Searched refs:tohex (Results 1 – 6 of 6) sorted by relevance
520 int tohex (int nib) in tohex() function537 *hex++ = tohex ((*bin >> 4) & 0xf); in hexify()538 *hex++ = tohex (*bin++ & 0xf); in hexify()687 *p++ = tohex ((csum >> 4) & 0xf); in putpkt_binary()688 *p++ = tohex (csum & 0xf); in putpkt_binary()915 *to++ = tohex (nib); in convert_int_to_ascii()917 *to++ = tohex (nib); in convert_int_to_ascii()937 *buf++ = tohex ((regno >> 12) & 0xf); in outreg()939 *buf++ = tohex ((regno >> 8) & 0xf); in outreg()940 *buf++ = tohex ((regno >> 4) & 0xf); in outreg()[all …]
34 char *tohex(const void *, size_t);
741 tohex(const void *vp, size_t l) in tohex() function
3614 new_data = tohex(x11_fake_data, data_len);
395 static inline int tohex(int v) in tohex() function410 *q++ = tohex(c >> 4); in memtohex()411 *q++ = tohex(c & 0xf); in memtohex()442 *(p++) = tohex((csum >> 4) & 0xf); in put_packet_binary()443 *(p++) = tohex((csum) & 0xf); in put_packet_binary()
2808 #define tohex(n) "0123456789abcdef"[n] in print_xattr_val() macro2811 *out++ = tohex(in[i] / 16); in print_xattr_val()2812 *out++ = tohex(in[i] % 16); in print_xattr_val()