Searched refs:hex_asc (Results 1 – 8 of 8) sorted by relevance
266 extern const char hex_asc[];267 #define hex_asc_lo(x) hex_asc[((x) & 0x0f)]268 #define hex_asc_hi(x) hex_asc[((x) & 0xf0) >> 4]
14 const char hex_asc[] = "0123456789abcdef"; variable21 *p-- = hex_asc[val & 0x0f]; in as_hex()
14 const char hex_asc[] = "0123456789abcdef"; variable15 EXPORT_SYMBOL(hex_asc);
392 pkt[1] = hex_asc[(error / 10)]; in error_packet()393 pkt[2] = hex_asc[(error % 10)]; in error_packet()
373 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()
240 seq_putc(m, hex_asc[x]); in render_sigset_t()
777 m->buf[m->count + i] = hex_asc[0xf & v]; in seq_put_hex_ll()
252 *c-- = hex_asc[value & 0x0f]; in gfs2_reverse_hex()
Completed in 16 milliseconds