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

  /external/valgrind/main/coregrind/m_gdbserver/
remote-utils.c 520 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 ((regno >> 4) & 0xf)
    [all...]
  /external/openssh/
misc.h 34 char *tohex(const void *, size_t);
misc.c 741 tohex(const void *vp, size_t l) function
748 return xstrdup("tohex: length > 65536");
channels.c     [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 2607 milliseconds