HomeSort by relevance Sort by last modified time
    Searched defs:tohex (Results 1 - 5 of 5) sorted by null

  /external/valgrind/main/none/tests/amd64/
aes.c 49 static int tohex (int nib) function
60 *summary++ = tohex((dst->uChar[i] >> 4) & 0xf);
61 *summary++ = tohex(dst->uChar[i] & 0xf);
  /external/openssh/
misc.c 741 tohex(const void *vp, size_t l) function
748 return xstrdup("tohex: length > 65536");
  /external/valgrind/main/coregrind/m_gdbserver/
remote-utils.c 521 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 ((regno >> 4) & 0xf)
    [all...]
  /external/qemu/
gdbstub.c 395 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);
    [all...]
  /external/strace/
file.c 2843 #define tohex macro
    [all...]

Completed in 368 milliseconds