Home
last modified time | relevance | path

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

/external/syslinux/gpxe/src/core/
Dbtext.c258 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]);
/external/mesa3d/src/gallium/drivers/trace/
Dtr_dump.c479 static const char hex_table[16] = "0123456789ABCDEF"; in trace_dump_bytes() local
490 hex[0] = hex_table[byte >> 4]; in trace_dump_bytes()
491 hex[1] = hex_table[byte & 0xf]; in trace_dump_bytes()