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

/freebsd-11-stable/stand/libsa/
H A Duuid_to_string.c43 tohex(char **buf, int len, uint32_t val) function
94 tohex(&w, 8, u->time_low);
96 tohex(&w, 4, u->time_mid);
98 tohex(&w, 4, u->time_hi_and_version);
101 tohex(&w, 2, u->clock_seq_hi_and_reserved);
102 tohex(&w, 2, u->clock_seq_low);
104 tohex(&w, 2, u->node[0]);
105 tohex(&w, 2, u->node[1]);
106 tohex(&w, 2, u->node[2]);
107 tohex(
[all...]
/freebsd-11-stable/contrib/gdb/gdb/gdbserver/
H A Dremote-utils.c234 tohex (int nib) function
253 *hex++ = tohex ((*bin >> 4) & 0xf);
254 *hex++ = tohex (*bin++ & 0xf);
287 *p++ = tohex ((csum >> 4) & 0xf);
288 *p++ = tohex (csum & 0xf);
526 *to++ = tohex (nib);
528 *to++ = tohex (nib);
550 *buf++ = tohex ((regno >> 12) & 0xf);
552 *buf++ = tohex ((regno >> 8) & 0xf);
553 *buf++ = tohex ((regn
[all...]
H A Dgdbreplay.c160 tohex (int ch) function
223 ch = tohex (ch2) << 4;
227 ch |= tohex (ch2);
/freebsd-11-stable/crypto/openssh/
H A Dmisc.h60 char *tohex(const void *, size_t);
H A Dssh_namespace.h893 #define tohex Fssh_tohex macro
H A Dmisc.c813 tohex(const void *vp, size_t l) function
820 return xstrdup("tohex: length > 65536");
H A Dssh.c1209 conn_hash_hex = tohex(conn_hash, ssh_digest_bytes(SSH_DIGEST_SHA1));
H A Dchannels.c4644 new_data = tohex(x11_fake_data, data_len);
/freebsd-11-stable/crypto/openssh/regress/unittests/test_helper/
H A Dtest_helper.c337 tohex(const void *_s, size_t l) function
368 fprintf(stderr, "%12s = %s (len %zu)\n", a1, tohex(aa1, MIN(l, 256)), l);
369 fprintf(stderr, "%12s = %s (len %zu)\n", a2, tohex(aa2, MIN(l, 256)), l);
404 tohex(aa1, MIN(l, 20)), l > 20 ? "..." : "", l);
/freebsd-11-stable/contrib/gdb/gdb/
H A Dremote.c127 static int tohex (int nib);
2403 tohex (int nib)
2421 *hex++ = tohex ((*bin >> 4) & 0xf);
2422 *hex++ = tohex (*bin++ & 0xf);
2609 *p++ = tohex (((int) siggnal >> 4) & 0xf);
2610 *p++ = tohex (((int) siggnal) & 0xf);
2647 buf[1] = tohex (((int) siggnal >> 4) & 0xf);
2648 buf[2] = tohex (((int) siggnal) & 0xf);
3961 *p++ = tohex ((csum >> 4) & 0xf);
3962 *p++ = tohex (csu
2397 tohex (int nib) function
[all...]
/freebsd-11-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-11-stable/sbin/ifconfig/
H A Difieee80211.c5128 #define tohex(x) (isdigit(x) ? (x) - '0' : tolower(x) - 'a' + 10) macro
5129 *p++ = (tohex((u_char)val[0]) << 4) |
5130 tohex((u_char)val[1]);
5131 #undef tohex macro

Completed in 258 milliseconds