Home
last modified time | relevance | path

Searched refs:digit (Results 1 – 6 of 6) sorted by relevance

/rk3399_rockchip-uboot/include/
H A Ddebug_uart.h185 static inline void printhex1(uint digit) \
187 digit &= 0xf; \
188 _debug_uart_putc(digit > 9 ? digit - 10 + 'a' : digit + '0'); \
/rk3399_rockchip-uboot/lib/avb/libavb/
H A Davb_property_descriptor.c160 int digit; in avb_property_lookup_uint64() local
165 digit = c - '0'; in avb_property_lookup_uint64()
167 digit = c - 'a' + 10; in avb_property_lookup_uint64()
169 digit = c - 'A' + 10; in avb_property_lookup_uint64()
175 parsed_val += digit; in avb_property_lookup_uint64()
/rk3399_rockchip-uboot/tools/
H A Dimg2srec.c73 uint32_t digit; in ExtractHex() local
80 if ((c >= '0') && (c <= '9')) digit = (uint32_t)(c - '0'); in ExtractHex()
81 else if ((c >= 'A') && (c <= 'F')) digit = (uint32_t)(c - 'A' + 10); in ExtractHex()
82 else if ((c >= 'a') && (c <= 'f')) digit = (uint32_t)(c - 'a' + 10); in ExtractHex()
85 num += digit; in ExtractHex()
95 uint32_t digit; in ExtractDecimal() local
102 if ((c >= '0') && (c <= '9')) digit = (uint32_t)(c - '0'); in ExtractDecimal()
105 num += digit; in ExtractDecimal()
/rk3399_rockchip-uboot/common/
H A DxyzModem.c135 int digit; in parse_num() local
148 if (_is_hex (c) && ((digit = _from_hex (c)) < radix)) in parse_num()
151 result = (result * radix) + digit; in parse_num()
/rk3399_rockchip-uboot/drivers/mtd/
H A Dcfi_flash.c1296 #define FLASH_SHOW_PROGRESS(scale, dots, digit, dots_sub) \ argument
1300 if ((digit % 5) == 0) \
1301 printf("%d", digit / 5); \
1304 digit--; \
1309 #define FLASH_SHOW_PROGRESS(scale, dots, digit, dots_sub) argument
1329 int digit = CONFIG_FLASH_SHOW_PROGRESS; in write_buff() local
1365 FLASH_SHOW_PROGRESS(scale, dots, digit, i); in write_buff()
1397 FLASH_SHOW_PROGRESS(scale, dots, digit, i); in write_buff()
1412 FLASH_SHOW_PROGRESS(scale, dots, digit, info->portwidth); in write_buff()
/rk3399_rockchip-uboot/doc/
H A DREADME.android-fastboot-protocol43 DATA00000000 where the 8 digit hexidecimal number represents