Searched refs:tohex (Results 1 – 17 of 17) sorted by relevance
| /netbsd/src/external/gpl3/gdb/dist/gdb/testsuite/gdb.trace/ |
| D | tfile.c | 205 tohex (int nib) in tohex() function 220 *hex++ = tohex ((*bin >> 4) & 0xf); in bin2hex() 221 *hex++ = tohex (*bin++ & 0xf); in bin2hex()
|
| /netbsd/src/sbin/ifconfig/ |
| D | util.c | 116 #define tohex(x) (isdigit(x) ? (x) - '0' : tolower(x) - 'a' + 10) in get_string() macro 117 *p++ = (tohex((u_char)val[0]) << 4) | in get_string() 118 tohex((u_char)val[1]); in get_string() 119 #undef tohex in get_string()
|
| /netbsd/src/crypto/external/bsd/openssh/dist/ |
| D | namespace.h | 82 #define tohex ssh_tohex macro
|
| D | misc.h | 91 char *tohex(const void *, size_t);
|
| D | sshsig.c | 427 if ((hex = tohex(hash, ssh_digest_bytes(alg))) != NULL) { in hash_buffer() 552 if ((hex = tohex(hash, ssh_digest_bytes(alg))) != NULL) { in hash_file()
|
| D | krl.c | 1344 fp = tohex(rb->blob, rb->len); in krl_dump() 1353 fp = tohex(rb->blob, rb->len); in krl_dump()
|
| D | misc.c | 1523 tohex(const void *vp, size_t l) in tohex() function
|
| D | readconf.c | 407 return tohex(conn_hash, ssh_digest_bytes(SSH_DIGEST_SHA1)); in ssh_connection_hash()
|
| D | ssh-keygen.c | 3173 cp = tohex(user, slen); in sk_suffix()
|
| D | channels.c | 5276 new_data = tohex(sc->x11_fake_data, data_len); in x11_request_forwarding_with_spoofing()
|
| /netbsd/src/external/gpl3/binutils/dist/gas/config/ |
| D | tc-z8k.c | 63 tohex (int c) in tohex() function 85 c = (tohex (input_line_pointer[0]) << 4) in sval() 86 | tohex (input_line_pointer[1]); in sval()
|
| /netbsd/src/external/bsd/libarchive/dist/libarchive/ |
| D | archive_read_support_format_tar.c | 223 static int tohex(int c); 3568 int digit1 = tohex(s[1]); in url_decode() 3569 int digit2 = tohex(s[2]); in url_decode() 3588 tohex(int c) in tohex() function
|
| /netbsd/src/external/gpl3/gdb/dist/gdb/ |
| D | remote.c | 3068 *p++ = tohex (i >> 4); in pass_signals() 3069 *p++ = tohex (i & 15); in pass_signals() 3187 *p++ = tohex (i >> 4); in program_signals() 3188 *p++ = tohex (i & 15); in program_signals() 6899 buf[1] = tohex (((int) siggnal >> 4) & 0xf); in remote_resume_with_hc() 6900 buf[2] = tohex (((int) siggnal) & 0xf); in remote_resume_with_hc() 10050 *p++ = tohex ((csum >> 4) & 0xf); in putpkt_binary() 10051 *p++ = tohex (csum & 0xf); in putpkt_binary()
|
| D | ChangeLog-2014 | 14280 (fromhex, hex2bin, tohex, bin2hex, remote_escape_output)
|
| D | ChangeLog-2004 | 14209 * remote-sds.c (tohex): Delete unused function. Update copyright.
|
| /netbsd/src/external/gpl3/binutils/dist/gas/ |
| D | ChangeLog-0001 | 1180 (tohex): Use ISDIGIT/ISLOWER instead of isdigit/islower.
|
| /netbsd/src/external/gpl3/gdb/dist/gdb/testsuite/ |
| D | ChangeLog-1993-2013 | 13145 * gdb.trace/tfile.c (tohex, bin2hex): New.
|