Searched refs:tohex (Results 1 - 6 of 6) sorted by last modified time

/external/valgrind/main/coregrind/m_gdbserver/
H A Dremote-utils.c520 int tohex (int nib) function
537 *hex++ = tohex ((*bin >> 4) & 0xf);
538 *hex++ = tohex (*bin++ & 0xf);
687 *p++ = tohex ((csum >> 4) & 0xf);
688 *p++ = tohex (csum & 0xf);
915 *to++ = tohex (nib);
917 *to++ = tohex (nib);
937 *buf++ = tohex ((regno >> 12) & 0xf);
939 *buf++ = tohex ((regno >> 8) & 0xf);
940 *buf++ = tohex ((regn
[all...]
/external/strace/
H A Dfile.c2843 #define tohex(n) "0123456789abcdef"[n] macro
2846 *out++ = tohex(in[i] / 16);
2847 *out++ = tohex(in[i] % 16);
/external/qemu/
H A Dgdbstub.c395 static inline int tohex(int v) function
410 *q++ = tohex(c >> 4);
411 *q++ = tohex(c & 0xf);
442 *(p++) = tohex((csum >> 4) & 0xf);
443 *(p++) = tohex((csum) & 0xf);
/external/openssh/
H A Dchannels.c3614 new_data = tohex(x11_fake_data, data_len);
H A Dmisc.c741 tohex(const void *vp, size_t l) function
748 return xstrdup("tohex: length > 65536");
H A Dmisc.h34 char *tohex(const void *, size_t);

Completed in 123 milliseconds