Home
last modified time | relevance | path

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

/openbmc/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]
/openbmc/u-boot/include/
H A Dhexdump.h19 extern const char hex_asc[];
20 #define hex_asc_lo(x) hex_asc[((x) & 0x0f)]
21 #define hex_asc_hi(x) hex_asc[((x) & 0xf0) >> 4]
/openbmc/u-boot/lib/
H A Dtiny-printf.c59 static const char hex_asc[] = "0123456789abcdef"; variable
60 #define hex_asc_lo(x) hex_asc[((x) & 0x0f)]
61 #define hex_asc_hi(x) hex_asc[((x) & 0xf0) >> 4]
H A Dhexdump.c18 const char hex_asc[] = "0123456789abcdef"; variable
/openbmc/linux/lib/
H A Dhexdump.c14 const char hex_asc[] = "0123456789abcdef"; variable
15 EXPORT_SYMBOL(hex_asc);
/openbmc/linux/arch/s390/boot/
H A Dpgm_check_info.c14 const char hex_asc[] = "0123456789abcdef"; variable
21 *p-- = hex_asc[val & 0x0f]; in as_hex()
/openbmc/linux/kernel/debug/
H A Dgdbstub.c392 pkt[1] = hex_asc[(error / 10)]; in error_packet()
393 pkt[2] = hex_asc[(error % 10)]; in error_packet()
/openbmc/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()
/openbmc/linux/fs/proc/
H A Darray.c243 seq_putc(m, hex_asc[x]); in render_sigset_t()
/openbmc/linux/fs/
H A Dseq_file.c777 m->buf[m->count + i] = hex_asc[0xf & v]; in seq_put_hex_ll()
/openbmc/linux/fs/gfs2/
H A Dlock_dlm.c255 *c-- = hex_asc[value & 0x0f]; in gfs2_reverse_hex()