Home
last modified time | relevance | path

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

/linux-4.1.27/lib/
Dhexdump.c15 const char hex_asc[] = "0123456789abcdef"; variable
16 EXPORT_SYMBOL(hex_asc);
/linux-4.1.27/kernel/
Dmodule_signing.c153 *q++ = hex_asc[*key_id >> 4]; in request_asymmetric_key()
154 *q++ = hex_asc[*key_id++ & 0x0f]; in request_asymmetric_key()
/linux-4.1.27/arch/cris/arch-v10/kernel/
Dkgdb.c403 for (s1 = (char*)s; (sd = gdb_cris_memchr(hex_asc, *s1, base)) != NULL; ++s1) in gdb_cris_strtol()
404 x = x * base + (sd - hex_asc); in gdb_cris_strtol()
/linux-4.1.27/include/linux/
Dkernel.h488 extern const char hex_asc[];
489 #define hex_asc_lo(x) hex_asc[((x) & 0x0f)]
490 #define hex_asc_hi(x) hex_asc[((x) & 0xf0) >> 4]
/linux-4.1.27/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.1.27/arch/cris/arch-v32/kernel/
Dkgdb.c528 for (s1 = (char*)s; (sd = gdb_cris_memchr(hex_asc, *s1, base)) != NULL; ++s1) in gdb_cris_strtol()
529 x = x * base + (sd - hex_asc); in gdb_cris_strtol()
/linux-4.1.27/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.1.27/fs/gfs2/
Dlock_dlm.c248 *c-- = hex_asc[value & 0x0f]; in gfs2_reverse_hex()