Home
last modified time | relevance | path

Searched refs:hex_asc_lo (Results 1 – 14 of 14) sorted by relevance

/openbmc/linux/arch/powerpc/kernel/
H A Dbtext.c560 btext_drawchar(hex_asc_lo(v >> 56)); in btext_drawhex()
562 btext_drawchar(hex_asc_lo(v >> 48)); in btext_drawhex()
564 btext_drawchar(hex_asc_lo(v >> 40)); in btext_drawhex()
566 btext_drawchar(hex_asc_lo(v >> 32)); in btext_drawhex()
569 btext_drawchar(hex_asc_lo(v >> 24)); in btext_drawhex()
571 btext_drawchar(hex_asc_lo(v >> 16)); in btext_drawhex()
573 btext_drawchar(hex_asc_lo(v >> 8)); in btext_drawhex()
575 btext_drawchar(hex_asc_lo(v)); in btext_drawhex()
/openbmc/linux/include/linux/
H A Dhex.h8 #define hex_asc_lo(x) hex_asc[((x) & 0x0f)] macro
14 *buf++ = hex_asc_lo(byte); in hex_byte_pack()
/openbmc/u-boot/include/
H A Dhexdump.h20 #define hex_asc_lo(x) hex_asc[((x) & 0x0f)] macro
26 *buf++ = hex_asc_lo(byte); in hex_byte_pack()
/openbmc/linux/drivers/pnp/
H A Dsupport.c55 str[4] = hex_asc_lo(id >> 8); in pnp_eisa_id_to_string()
57 str[6] = hex_asc_lo(id); in pnp_eisa_id_to_string()
/openbmc/linux/fs/adfs/
H A Ddir.c231 obj->name[obj->name_len++] = hex_asc_lo(filetype >> 8); in adfs_object_fixup()
232 obj->name[obj->name_len++] = hex_asc_lo(filetype >> 4); in adfs_object_fixup()
233 obj->name[obj->name_len++] = hex_asc_lo(filetype >> 0); in adfs_object_fixup()
/openbmc/u-boot/lib/
H A Dtiny-printf.c60 #define hex_asc_lo(x) hex_asc[((x) & 0x0f)] macro
66 *buf++ = hex_asc_lo(byte); in pack_hex_byte()
H A Dhexdump.c122 linebuf[lx++] = hex_asc_lo(ch); in hex_dump_to_buffer()
/openbmc/linux/kernel/debug/
H A Dgdbstub.c164 dbg_io_ops->write_char(hex_asc_lo(checksum)); in put_packet()
1138 buffer[2] = hex_asc_lo(status); in gdbstub_exit()
1151 dbg_io_ops->write_char(hex_asc_lo(checksum)); in gdbstub_exit()
/openbmc/linux/lib/
H A Dhexdump.c197 linebuf[lx++] = hex_asc_lo(ch); in hex_dump_to_buffer()
H A Dseq_buf.c274 hex[j++] = hex_asc_lo(data[i]);
H A Dstring_helpers.c480 *out = hex_asc_lo(c); in escape_hex()
H A Dvsprintf.c1180 *buf = hex_asc_lo(addr[i]); in hex_string()
1421 *p++ = hex_asc_lo(hi); in ip6_compressed_string()
1427 *p++ = hex_asc_lo(lo); in ip6_compressed_string()
/openbmc/linux/drivers/misc/
H A Dkgdbts.c716 get_buf[count + 3] = hex_asc_lo(checksum); in fill_get_buf()
/openbmc/linux/net/ipv4/
H A Darp.c1384 hbuffer[k++] = hex_asc_lo(n->ha[j]); in arp_format_neigh_entry()