Searched refs:hex_asc (Results 1 – 7 of 7) sorted by relevance
16 const char hex_asc[] = "0123456789abcdef"; variable17 EXPORT_SYMBOL(hex_asc);
404 for (s1 = (char*)s; (sd = gdb_cris_memchr(hex_asc, *s1, base)) != NULL; ++s1) in gdb_cris_strtol()405 x = x * base + (sd - hex_asc); in gdb_cris_strtol()
495 extern const char hex_asc[];496 #define hex_asc_lo(x) hex_asc[((x) & 0x0f)]497 #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()
522 for (s1 = (char*)s; (sd = gdb_cris_memchr(hex_asc, *s1, base)) != NULL; ++s1) in gdb_cris_strtol()523 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()