Searched refs:hex_asc (Results 1 – 3 of 3) sorted by relevance
19 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]
65 static const char hex_asc[] = "0123456789abcdef"; variable66 #define hex_asc_lo(x) hex_asc[((x) & 0x0f)]67 #define hex_asc_hi(x) hex_asc[((x) & 0xf0) >> 4]
18 const char hex_asc[] = "0123456789abcdef"; variable