Searched defs:tohex (Results 1 - 5 of 5) sorted by relevance

/external/valgrind/main/none/tests/amd64/
H A Daes.c49 static int tohex (int nib) function
60 *summary++ = tohex((dst->uChar[i] >> 4) & 0xf);
61 *summary++ = tohex(dst->uChar[i] & 0xf);
/external/openssh/
H A Dmisc.c741 tohex(const void *vp, size_t l) function
748 return xstrdup("tohex: length > 65536");
/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/valgrind/main/coregrind/m_gdbserver/
H A Dremote-utils.c521 int tohex (int nib) function
538 *hex++ = tohex ((*bin >> 4) & 0xf);
539 *hex++ = tohex (*bin++ & 0xf);
711 *p++ = tohex ((csum >> 4) & 0xf);
712 *p++ = tohex (csum & 0xf);
939 *to++ = tohex (nib);
941 *to++ = tohex (nib);
961 *buf++ = tohex ((regno >> 12) & 0xf);
963 *buf++ = tohex ((regno >> 8) & 0xf);
964 *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);

Completed in 186 milliseconds