Home
last modified time | relevance | path

Searched refs:hex_to_bin (Results 1 – 2 of 2) sorted by relevance

/external/u-boot/test/lib/
Dhexdump.c15 ut_asserteq(0x0, hex_to_bin('0')); in lib_test_hex_to_bin()
16 ut_asserteq(0x1, hex_to_bin('1')); in lib_test_hex_to_bin()
17 ut_asserteq(0x2, hex_to_bin('2')); in lib_test_hex_to_bin()
18 ut_asserteq(0x3, hex_to_bin('3')); in lib_test_hex_to_bin()
19 ut_asserteq(0x4, hex_to_bin('4')); in lib_test_hex_to_bin()
20 ut_asserteq(0x5, hex_to_bin('5')); in lib_test_hex_to_bin()
21 ut_asserteq(0x6, hex_to_bin('6')); in lib_test_hex_to_bin()
22 ut_asserteq(0x7, hex_to_bin('7')); in lib_test_hex_to_bin()
23 ut_asserteq(0x8, hex_to_bin('8')); in lib_test_hex_to_bin()
24 ut_asserteq(0x9, hex_to_bin('9')); in lib_test_hex_to_bin()
[all …]
/external/u-boot/include/
Dhexdump.h37 static inline int hex_to_bin(char ch) in hex_to_bin() function
58 int hi = hex_to_bin(*src++); in hex2bin()
59 int lo = hex_to_bin(*src++); in hex2bin()