Home
last modified time | relevance | path

Searched refs:tohex (Results 1 – 6 of 6) 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()
/external/openssh/
Dmisc.h53 char *tohex(const void *, size_t);
Dmisc.c742 tohex(const void *vp, size_t l) in tohex() function
Dssh.c1134 conn_hash_hex = tohex(conn_hash, ssh_digest_bytes(SSH_DIGEST_SHA1)); in main()
Dchannels.c4257 new_data = tohex(x11_fake_data, data_len);