Searched refs:hex_asc (Results 1 – 18 of 18) sorted by relevance
19 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]
65 static const char hex_asc[] = "0123456789abcdef"; variable66 #define hex_asc_lo(x) hex_asc[((x) & 0x0f)]67 #define hex_asc_hi(x) hex_asc[((x) & 0xf0) >> 4]
18 const char hex_asc[] = "0123456789abcdef"; variable
14 const char hex_asc[] = "0123456789abcdef"; variable15 EXPORT_SYMBOL(hex_asc);
616 extern const char hex_asc[];617 #define hex_asc_lo(x) hex_asc[((x) & 0x0f)]618 #define hex_asc_hi(x) hex_asc[((x) & 0xf0) >> 4]
9 const char hex_asc[] = "0123456789abcdef"; variable
395 pkt[1] = hex_asc[(error / 10)]; in error_packet()396 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()
244 seq_putc(m, hex_asc[x]); in render_sigset_t()
765 m->buf[m->count + i] = hex_asc[0xf & v]; in seq_put_hex_ll()
249 *c-- = hex_asc[value & 0x0f]; in gfs2_reverse_hex()
287 static const char hex_asc[] = "0123456789abcdef"; in bin2hex() local292 *dst++ = hex_asc[(x & 0xf0) >> 4]; in bin2hex()293 *dst++ = hex_asc[(x & 0x0f)]; in bin2hex()
899 hex_asc
1135 hex_asc