Home
last modified time | relevance | path

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

/linux/include/linux/
H A Dhex.h7 extern const char hex_asc[];
8 #define hex_asc_lo(x) hex_asc[((x) & 0x0f)]
9 #define hex_asc_hi(x) hex_asc[((x) & 0xf0) >> 4]
/linux/lib/
H A Dhexdump.c14 const char hex_asc[] = "0123456789abcdef"; variable
15 EXPORT_SYMBOL(hex_asc);
/linux/drivers/hid/
H A Dhid-picolcd_debugfs.c373 dst[j++] = hex_asc[(data[i] >> 4) & 0x0f]; in dump_buff_as_hex()
374 dst[j++] = hex_asc[data[i] & 0x0f]; in dump_buff_as_hex()
/linux/fs/proc/
H A Darray.c241 seq_putc(m, hex_asc[x]); in render_sigset_t()