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]
59 static const char hex_asc[] = "0123456789abcdef"; variable60 #define hex_asc_lo(x) hex_asc[((x) & 0x0f)]61 #define hex_asc_hi(x) hex_asc[((x) & 0xf0) >> 4]
18 const char hex_asc[] = "0123456789abcdef"; variable