Home
last modified time | relevance | path

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

/Linux-v4.19/lib/
Dhexdump.c17 const char hex_asc[] = "0123456789abcdef"; variable
18 EXPORT_SYMBOL(hex_asc);
/Linux-v4.19/include/linux/
Dkernel.h611 extern const char hex_asc[];
612 #define hex_asc_lo(x) hex_asc[((x) & 0x0f)]
613 #define hex_asc_hi(x) hex_asc[((x) & 0xf0) >> 4]
/Linux-v4.19/kernel/debug/
Dgdbstub.c395 pkt[1] = hex_asc[(error / 10)]; in error_packet()
396 pkt[2] = hex_asc[(error % 10)]; in error_packet()
/Linux-v4.19/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-v4.19/fs/proc/
Darray.c245 seq_putc(m, hex_asc[x]); in render_sigset_t()
/Linux-v4.19/fs/
Dseq_file.c758 m->buf[m->count + i] = hex_asc[0xf & v]; in seq_put_hex_ll()
/Linux-v4.19/fs/gfs2/
Dlock_dlm.c247 *c-- = hex_asc[value & 0x0f]; in gfs2_reverse_hex()