Home
last modified time | relevance | path

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

/netbsd/src/external/gpl3/gdb/dist/gdb/testsuite/gdb.trace/
Dtfile.c205 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/
Dutil.c116 #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/
Dnamespace.h82 #define tohex ssh_tohex macro
Dmisc.h91 char *tohex(const void *, size_t);
Dsshsig.c427 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()
Dkrl.c1344 fp = tohex(rb->blob, rb->len); in krl_dump()
1353 fp = tohex(rb->blob, rb->len); in krl_dump()
Dmisc.c1523 tohex(const void *vp, size_t l) in tohex() function
Dreadconf.c407 return tohex(conn_hash, ssh_digest_bytes(SSH_DIGEST_SHA1)); in ssh_connection_hash()
Dssh-keygen.c3173 cp = tohex(user, slen); in sk_suffix()
Dchannels.c5276 new_data = tohex(sc->x11_fake_data, data_len); in x11_request_forwarding_with_spoofing()
/netbsd/src/external/gpl3/binutils/dist/gas/config/
Dtc-z8k.c63 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/
Darchive_read_support_format_tar.c223 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/
Dremote.c3068 *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()
DChangeLog-201414280 (fromhex, hex2bin, tohex, bin2hex, remote_escape_output)
DChangeLog-200414209 * remote-sds.c (tohex): Delete unused function. Update copyright.
/netbsd/src/external/gpl3/binutils/dist/gas/
DChangeLog-00011180 (tohex): Use ISDIGIT/ISLOWER instead of isdigit/islower.
/netbsd/src/external/gpl3/gdb/dist/gdb/testsuite/
DChangeLog-1993-201313145 * gdb.trace/tfile.c (tohex, bin2hex): New.