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

/external/syslinux/gpxe/src/core/
H A 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]);

Completed in 173 milliseconds