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

  /external/valgrind/main/coregrind/m_gdbserver/
remote-utils.c 607 int tohex (int nib) function
624 *hex++ = tohex ((*bin >> 4) & 0xf);
625 *hex++ = tohex (*bin++ & 0xf);
800 *p++ = tohex ((csum >> 4) & 0xf);
801 *p++ = tohex (csum & 0xf);
1036 *to++ = tohex (nib);
1038 *to++ = tohex (nib);
1058 *buf++ = tohex ((regno >> 12) & 0xf);
1060 *buf++ = tohex ((regno >> 8) & 0xf);
1061 *buf++ = tohex ((regno >> 4) & 0xf)
    [all...]
  /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/qemu/
gdbstub.c 397 static inline int tohex(int v) function
412 *q++ = tohex(c >> 4);
413 *q++ = tohex(c & 0xf);
444 *(p++) = tohex((csum >> 4) & 0xf);
445 *(p++) = tohex((csum) & 0xf);
    [all...]
  /external/strace/
file.c 2276 #define tohex macro
    [all...]

Completed in 88 milliseconds