Home
last modified time | relevance | path

Searched refs:tohex (Results 1 – 2 of 2) sorted by relevance

/external/valgrind/coregrind/m_gdbserver/
Dremote-utils.c642 int tohex (int nib) in tohex() function
659 *hex++ = tohex ((*bin >> 4) & 0xf); in hexify()
660 *hex++ = tohex (*bin++ & 0xf); in hexify()
835 *p++ = tohex ((csum >> 4) & 0xf); in putpkt_binary()
836 *p++ = tohex (csum & 0xf); in putpkt_binary()
1090 *to++ = tohex (nib); in convert_int_to_ascii()
1092 *to++ = tohex (nib); in convert_int_to_ascii()
1112 *buf++ = tohex ((regno >> 12) & 0xf); in outreg()
1114 *buf++ = tohex ((regno >> 8) & 0xf); in outreg()
1115 *buf++ = tohex ((regno >> 4) & 0xf); in outreg()
[all …]
/external/valgrind/none/tests/amd64/
Daes.c49 static int tohex (int nib) in tohex() function
60 *summary++ = tohex((dst->uChar[i] >> 4) & 0xf); in unexpand()
61 *summary++ = tohex(dst->uChar[i] & 0xf); in unexpand()