hex_asc_upper 279 drivers/net/can/slcan.c *endpos-- = hex_asc_upper[id & 0xf]; hex_asc_upper 619 include/linux/kernel.h extern const char hex_asc_upper[]; hex_asc_upper 620 include/linux/kernel.h #define hex_asc_upper_lo(x) hex_asc_upper[((x) & 0x0f)] hex_asc_upper 621 include/linux/kernel.h #define hex_asc_upper_hi(x) hex_asc_upper[((x) & 0xf0) >> 4] hex_asc_upper 15 lib/hexdump.c const char hex_asc_upper[] = "0123456789ABCDEF"; hex_asc_upper 16 lib/hexdump.c EXPORT_SYMBOL(hex_asc_upper); hex_asc_upper 458 lib/vsprintf.c tmp[i++] = hex_asc_upper[num] | locase; hex_asc_upper 466 lib/vsprintf.c tmp[i++] = (hex_asc_upper[((unsigned char)num) & mask] | locase);