Home
last modified time | relevance | path

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

/src/stand/libsa/
H A Duuid_to_string.c40 tohex(char **buf, int len, uint32_t val) in tohex() function
91 tohex(&w, 8, u->time_low); in uuid_to_string()
93 tohex(&w, 4, u->time_mid); in uuid_to_string()
95 tohex(&w, 4, u->time_hi_and_version); in uuid_to_string()
98 tohex(&w, 2, u->clock_seq_hi_and_reserved); in uuid_to_string()
99 tohex(&w, 2, u->clock_seq_low); in uuid_to_string()
101 tohex(&w, 2, u->node[0]); in uuid_to_string()
102 tohex(&w, 2, u->node[1]); in uuid_to_string()
103 tohex(&w, 2, u->node[2]); in uuid_to_string()
104 tohex(&w, 2, u->node[3]); in uuid_to_string()
[all …]
/src/crypto/openssh/regress/unittests/test_helper/
H A Dtest_helper.c386 tohex(const void *_s, size_t l) in tohex() function
419 aa1_tohex = tohex(aa1, MINIMUM(l, 256)); in assert_mem()
420 aa2_tohex = tohex(aa2, MINIMUM(l, 256)); in assert_mem()
459 aa1_tohex = tohex(aa1, MINIMUM(l, 20)); in assert_mem_filled()
/src/crypto/openssh/
H A Dmisc.h90 char *tohex(const void *, size_t);
H A Dsshsig.c425 if ((hex = tohex(hash, ssh_digest_bytes(alg))) != NULL) { in hash_buffer()
550 if ((hex = tohex(hash, ssh_digest_bytes(alg))) != NULL) { in hash_file()
H A Dkrl.c1337 fp = tohex(rb->blob, rb->len); in krl_dump()
1346 fp = tohex(rb->blob, rb->len); in krl_dump()
H A Dssh_namespace.h997 #define tohex Fssh_tohex macro
H A Dmisc.c1554 tohex(const void *vp, size_t l) in tohex() function
H A Dssh-keygen.c3191 cp = tohex(user, slen); in sk_suffix()
H A Dreadconf.c372 return tohex(conn_hash, ssh_digest_bytes(SSH_DIGEST_SHA1)); in ssh_connection_hash()
H A Dchannels.c5329 new_data = tohex(sc->x11_fake_data, data_len); in x11_request_forwarding_with_spoofing()
/src/contrib/libarchive/libarchive/
H A Darchive_read_support_format_tar.c234 static int tohex(int c);
3692 int digit1 = tohex(s[1]); in url_decode()
3693 int digit2 = tohex(s[2]); in url_decode()
3712 tohex(int c) in tohex() function
/src/sbin/ifconfig/
H A Difieee80211.c5986 #define tohex(x) (isdigit(x) ? (x) - '0' : tolower(x) - 'a' + 10) in get_string() macro
5987 *p++ = (tohex((u_char)val[0]) << 4) | in get_string()
5988 tohex((u_char)val[1]); in get_string()
5989 #undef tohex in get_string()