Searched refs:hex_table (Results 1 – 2 of 2) sorted by relevance
258 static char hex_table[] = "0123456789abcdef";262 btext_drawchar(hex_table[(v >> 28) & 0x0000000FUL]);263 btext_drawchar(hex_table[(v >> 24) & 0x0000000FUL]);264 btext_drawchar(hex_table[(v >> 20) & 0x0000000FUL]);265 btext_drawchar(hex_table[(v >> 16) & 0x0000000FUL]);266 btext_drawchar(hex_table[(v >> 12) & 0x0000000FUL]);267 btext_drawchar(hex_table[(v >> 8) & 0x0000000FUL]);268 btext_drawchar(hex_table[(v >> 4) & 0x0000000FUL]);269 btext_drawchar(hex_table[(v >> 0) & 0x0000000FUL]);
479 static const char hex_table[16] = "0123456789ABCDEF"; in trace_dump_bytes() local490 hex[0] = hex_table[byte >> 4]; in trace_dump_bytes()491 hex[1] = hex_table[byte & 0xf]; in trace_dump_bytes()