Home
last modified time | relevance | path

Searched refs:hex_asc (Results 1 – 3 of 3) sorted by relevance

/external/u-boot/include/
Dhexdump.h19 extern const char hex_asc[];
20 #define hex_asc_lo(x) hex_asc[((x) & 0x0f)]
21 #define hex_asc_hi(x) hex_asc[((x) & 0xf0) >> 4]
/external/u-boot/lib/
Dtiny-printf.c59 static const char hex_asc[] = "0123456789abcdef"; variable
60 #define hex_asc_lo(x) hex_asc[((x) & 0x0f)]
61 #define hex_asc_hi(x) hex_asc[((x) & 0xf0) >> 4]
Dhexdump.c18 const char hex_asc[] = "0123456789abcdef"; variable