Searched refs:tohex (Results 1 - 9 of 9) sorted by relevance

/freebsd-13-stable/stand/libsa/
H A Duuid_to_string.c42 tohex(char **buf, int len, uint32_t val) function
93 tohex(&w, 8, u->time_low);
95 tohex(&w, 4, u->time_mid);
97 tohex(&w, 4, u->time_hi_and_version);
100 tohex(&w, 2, u->clock_seq_hi_and_reserved);
101 tohex(&w, 2, u->clock_seq_low);
103 tohex(&w, 2, u->node[0]);
104 tohex(&w, 2, u->node[1]);
105 tohex(&w, 2, u->node[2]);
106 tohex(
[all...]
/freebsd-13-stable/crypto/openssh/
H A Dmisc.h66 char *tohex(const void *, size_t);
H A Dssh_namespace.h831 #define tohex Fssh_tohex macro
H A Dmisc.c1133 tohex(const void *vp, size_t l) function
1140 return xstrdup("tohex: length > 65536");
H A Dssh.c1302 conn_hash_hex = tohex(conn_hash, ssh_digest_bytes(SSH_DIGEST_SHA1));
H A Dchannels.c4864 new_data = tohex(sc->x11_fake_data, data_len);
/freebsd-13-stable/crypto/openssh/regress/unittests/test_helper/
H A Dtest_helper.c348 tohex(const void *_s, size_t l) function
379 fprintf(stderr, "%12s = %s (len %zu)\n", a1, tohex(aa1, MIN(l, 256)), l);
380 fprintf(stderr, "%12s = %s (len %zu)\n", a2, tohex(aa2, MIN(l, 256)), l);
415 tohex(aa1, MIN(l, 20)), l > 20 ? "..." : "", l);
/freebsd-13-stable/contrib/libarchive/libarchive/
H A Darchive_read_support_format_tar.c229 static int tohex(int c);
2896 int digit1 = tohex(s[1]);
2897 int digit2 = tohex(s[2]);
2914 tohex(int c) function
/freebsd-13-stable/sbin/ifconfig/
H A Difieee80211.c5653 #define tohex(x) (isdigit(x) ? (x) - '0' : tolower(x) - 'a' + 10) macro
5654 *p++ = (tohex((u_char)val[0]) << 4) |
5655 tohex((u_char)val[1]);
5656 #undef tohex macro

Completed in 290 milliseconds