Home
last modified time | relevance | path

Searched refs:hex_asc (Results 1 – 7 of 7) sorted by relevance

/linux-4.4.14/lib/
Dhexdump.c16 const char hex_asc[] = "0123456789abcdef"; variable
17 EXPORT_SYMBOL(hex_asc);
/linux-4.4.14/arch/cris/arch-v10/kernel/
Dkgdb.c404 for (s1 = (char*)s; (sd = gdb_cris_memchr(hex_asc, *s1, base)) != NULL; ++s1) in gdb_cris_strtol()
405 x = x * base + (sd - hex_asc); in gdb_cris_strtol()
/linux-4.4.14/include/linux/
Dkernel.h495 extern const char hex_asc[];
496 #define hex_asc_lo(x) hex_asc[((x) & 0x0f)]
497 #define hex_asc_hi(x) hex_asc[((x) & 0xf0) >> 4]
/linux-4.4.14/kernel/debug/
Dgdbstub.c394 pkt[1] = hex_asc[(error / 10)]; in error_packet()
395 pkt[2] = hex_asc[(error % 10)]; in error_packet()
/linux-4.4.14/arch/cris/arch-v32/kernel/
Dkgdb.c522 for (s1 = (char*)s; (sd = gdb_cris_memchr(hex_asc, *s1, base)) != NULL; ++s1) in gdb_cris_strtol()
523 x = x * base + (sd - hex_asc); in gdb_cris_strtol()
/linux-4.4.14/drivers/hid/
Dhid-picolcd_debugfs.c383 dst[j++] = hex_asc[(data[i] >> 4) & 0x0f]; in dump_buff_as_hex()
384 dst[j++] = hex_asc[data[i] & 0x0f]; in dump_buff_as_hex()
/linux-4.4.14/fs/gfs2/
Dlock_dlm.c248 *c-- = hex_asc[value & 0x0f]; in gfs2_reverse_hex()