Searched refs:hex_asc (Results 1 – 8 of 8) sorted by relevance
15 const char hex_asc[] = "0123456789abcdef"; variable16 EXPORT_SYMBOL(hex_asc);
153 *q++ = hex_asc[*key_id >> 4]; in request_asymmetric_key()154 *q++ = hex_asc[*key_id++ & 0x0f]; in request_asymmetric_key()
403 for (s1 = (char*)s; (sd = gdb_cris_memchr(hex_asc, *s1, base)) != NULL; ++s1) in gdb_cris_strtol()404 x = x * base + (sd - hex_asc); in gdb_cris_strtol()
488 extern const char hex_asc[];489 #define hex_asc_lo(x) hex_asc[((x) & 0x0f)]490 #define hex_asc_hi(x) hex_asc[((x) & 0xf0) >> 4]
394 pkt[1] = hex_asc[(error / 10)]; in error_packet()395 pkt[2] = hex_asc[(error % 10)]; in error_packet()
528 for (s1 = (char*)s; (sd = gdb_cris_memchr(hex_asc, *s1, base)) != NULL; ++s1) in gdb_cris_strtol()529 x = x * base + (sd - hex_asc); in gdb_cris_strtol()
383 dst[j++] = hex_asc[(data[i] >> 4) & 0x0f]; in dump_buff_as_hex()384 dst[j++] = hex_asc[data[i] & 0x0f]; in dump_buff_as_hex()
248 *c-- = hex_asc[value & 0x0f]; in gfs2_reverse_hex()