HomeSort by: relevance | last modified time | path
    Searched refs:tohex (Results 1 - 25 of 27) sorted by relevancy

1 2

  /src/external/gpl3/gdb.old/dist/gdbsupport/
rsp-low.h 25 extern int tohex (int nib);
rsp-low.cc 25 tohex (int nib) function
136 *hex++ = tohex ((*bin >> 4) & 0xf);
137 *hex++ = tohex (*bin++ & 0xf);
161 ret += tohex ((*bin >> 4) & 0xf);
162 ret += tohex (*bin++ & 0xf);
  /src/external/gpl3/gdb/dist/gdbsupport/
rsp-low.h 25 extern int tohex (int nib);
rsp-low.cc 25 tohex (int nib) function
136 *hex++ = tohex ((*bin >> 4) & 0xf);
137 *hex++ = tohex (*bin++ & 0xf);
161 ret += tohex ((*bin >> 4) & 0xf);
162 ret += tohex (*bin++ & 0xf);
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.trace/
tfile.c 205 tohex (int nib) function
220 *hex++ = tohex ((*bin >> 4) & 0xf);
221 *hex++ = tohex (*bin++ & 0xf);
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.trace/
tfile.c 205 tohex (int nib) function
220 *hex++ = tohex ((*bin >> 4) & 0xf);
221 *hex++ = tohex (*bin++ & 0xf);
  /src/sbin/ifconfig/
util.c 116 #define tohex(x) (isdigit(x) ? (x) - '0' : tolower(x) - 'a' + 10) macro
117 *p++ = (tohex((u_char)val[0]) << 4) |
118 tohex((u_char)val[1]);
119 #undef tohex macro
  /src/crypto/external/bsd/openssh/dist/
namespace.h 82 #define tohex ssh_tohex macro
misc.h 95 char *tohex(const void *, size_t);
sshsig.c 427 if ((hex = tohex(hash, ssh_digest_bytes(alg))) != NULL) {
552 if ((hex = tohex(hash, ssh_digest_bytes(alg))) != NULL) {
ssh-pkcs11.c 408 hex = tohex(keyid_attrib->pValue, keyid_attrib->ulValueLen);
421 hex = tohex(k11->keyid, k11->keyid_len);
1153 hex = tohex(d, len);
1169 hex = tohex(key_attr[1].pValue, key_attr[1].ulValueLen);
krl.c 1344 fp = tohex(rb->blob, rb->len);
1353 fp = tohex(rb->blob, rb->len);
misc.c 1596 tohex(const void *vp, size_t l) function
1603 return xstrdup("tohex: length > 65536");
readconf.c 406 return tohex(conn_hash, ssh_digest_bytes(SSH_DIGEST_SHA1));
  /src/external/gpl3/gdb.old/dist/gdbserver/
remote-utils.cc 659 *p++ = tohex ((csum >> 4) & 0xf);
660 *p++ = tohex (csum & 0xf);
1045 *buf++ = tohex ((regno >> 12) & 0xf);
1047 *buf++ = tohex ((regno >> 8) & 0xf);
1048 *buf++ = tohex ((regno >> 4) & 0xf);
1049 *buf++ = tohex (regno & 0xf);
1198 *buf++ = tohex ((addr >> (i - 1) * 4) & 0xf);
gdbreplay.cc 416 checksum_hex[0] = tohex ((csum >> 4) & 0xf);
417 checksum_hex[1] = tohex (csum & 0xf);
linux-low.cc 6858 elem[0] = tohex ((*data >> 4) & 0xf);
6859 elem[1] = tohex (*data++ & 0xf);
  /src/external/gpl3/gdb/dist/gdbserver/
remote-utils.cc 659 *p++ = tohex ((csum >> 4) & 0xf);
660 *p++ = tohex (csum & 0xf);
1045 *buf++ = tohex ((regno >> 12) & 0xf);
1047 *buf++ = tohex ((regno >> 8) & 0xf);
1048 *buf++ = tohex ((regno >> 4) & 0xf);
1049 *buf++ = tohex (regno & 0xf);
1198 *buf++ = tohex ((addr >> (i - 1) * 4) & 0xf);
gdbreplay.cc 415 checksum_hex[0] = tohex ((csum >> 4) & 0xf);
416 checksum_hex[1] = tohex (csum & 0xf);
linux-low.cc 6885 elem[0] = tohex ((*data >> 4) & 0xf);
6886 elem[1] = tohex (*data++ & 0xf);
  /src/external/gpl3/binutils/dist/gas/config/
tc-z8k.c 63 tohex (int c) function
85 c = (tohex (input_line_pointer[0]) << 4)
86 | tohex (input_line_pointer[1]);
  /src/external/gpl3/binutils.old/dist/gas/config/
tc-z8k.c 63 tohex (int c) function
85 c = (tohex (input_line_pointer[0]) << 4)
86 | tohex (input_line_pointer[1]);
  /src/external/bsd/libarchive/dist/libarchive/
archive_read_support_format_tar.c 234 static int tohex(int c);
3692 int digit1 = tohex(s[1]);
3693 int digit2 = tohex(s[2]);
3712 tohex(int c) function
  /src/external/gpl3/gdb.old/dist/gdb/
remote.c 3105 *p++ = tohex (i >> 4);
3106 *p++ = tohex (i & 15);
3224 *p++ = tohex (i >> 4);
3225 *p++ = tohex (i & 15);
6941 buf[1] = tohex (((int) siggnal >> 4) & 0xf);
6942 buf[2] = tohex (((int) siggnal) & 0xf);
10158 *p++ = tohex ((csum >> 4) & 0xf);
10159 *p++ = tohex (csum & 0xf);
  /src/external/gpl3/gdb/dist/gdb/
remote.c 3123 *p++ = tohex (i >> 4);
3124 *p++ = tohex (i & 15);
3242 *p++ = tohex (i >> 4);
3243 *p++ = tohex (i & 15);
6971 buf[1] = tohex (((int) siggnal >> 4) & 0xf);
6972 buf[2] = tohex (((int) siggnal) & 0xf);
10187 *p++ = tohex ((csum >> 4) & 0xf);
10188 *p++ = tohex (csum & 0xf);

Completed in 62 milliseconds

1 2