Symbol: hex_asc_lo
arch/powerpc/kernel/btext.c
560
btext_drawchar(hex_asc_lo(v >> 56));
arch/powerpc/kernel/btext.c
562
btext_drawchar(hex_asc_lo(v >> 48));
arch/powerpc/kernel/btext.c
564
btext_drawchar(hex_asc_lo(v >> 40));
arch/powerpc/kernel/btext.c
566
btext_drawchar(hex_asc_lo(v >> 32));
arch/powerpc/kernel/btext.c
569
btext_drawchar(hex_asc_lo(v >> 24));
arch/powerpc/kernel/btext.c
571
btext_drawchar(hex_asc_lo(v >> 16));
arch/powerpc/kernel/btext.c
573
btext_drawchar(hex_asc_lo(v >> 8));
arch/powerpc/kernel/btext.c
575
btext_drawchar(hex_asc_lo(v));
drivers/gpio/gpio-macsmc.c
93
return _SMC_KEY("gP\0\0") | hex_asc_hi(offset) << 8 | hex_asc_lo(offset);
drivers/misc/kgdbts.c
717
get_buf[count + 3] = hex_asc_lo(checksum);
drivers/pnp/support.c
56
str[4] = hex_asc_lo(id >> 8);
drivers/pnp/support.c
58
str[6] = hex_asc_lo(id);
fs/adfs/dir.c
232
obj->name[obj->name_len++] = hex_asc_lo(filetype >> 8);
fs/adfs/dir.c
233
obj->name[obj->name_len++] = hex_asc_lo(filetype >> 4);
fs/adfs/dir.c
234
obj->name[obj->name_len++] = hex_asc_lo(filetype >> 0);
include/linux/hex.h
14
*buf++ = hex_asc_lo(byte);
kernel/debug/gdbstub.c
1140
buffer[2] = hex_asc_lo(status);
kernel/debug/gdbstub.c
1153
dbg_io_ops->write_char(hex_asc_lo(checksum));
kernel/debug/gdbstub.c
166
dbg_io_ops->write_char(hex_asc_lo(checksum));
lib/hexdump.c
198
linebuf[lx++] = hex_asc_lo(ch);
lib/seq_buf.c
284
hex[j++] = hex_asc_lo(data[i]);
lib/string_helpers.c
494
*out = hex_asc_lo(c);
lib/vsprintf.c
1212
*buf = hex_asc_lo(addr[i]);
lib/vsprintf.c
1461
*p++ = hex_asc_lo(hi);
lib/vsprintf.c
1467
*p++ = hex_asc_lo(lo);
net/ipv4/arp.c
1435
hbuffer[k++] = hex_asc_lo(n->ha[j]);