Home
last modified time | relevance | path

Searched refs:tohex (Results 1 – 6 of 6) sorted by relevance

/external/valgrind/main/coregrind/m_gdbserver/
Dremote-utils.c520 int tohex (int nib) in tohex() function
537 *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 …]
/external/openssh/
Dmisc.h34 char *tohex(const void *, size_t);
Dmisc.c741 tohex(const void *vp, size_t l) in tohex() function
Dchannels.c3614 new_data = tohex(x11_fake_data, data_len);
/external/qemu/
Dgdbstub.c395 static inline int tohex(int v) in tohex() function
410 *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()
/external/strace/
Dfile.c2808 #define tohex(n) "0123456789abcdef"[n] in print_xattr_val() macro
2811 *out++ = tohex(in[i] / 16); in print_xattr_val()
2812 *out++ = tohex(in[i] % 16); in print_xattr_val()