Home
last modified time | relevance | path

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

/freebsd-11-stable/stand/libsa/
HDuuid_to_string.c43 tohex(char **buf, int len, uint32_t val) in tohex() function
94 tohex(&w, 8, u->time_low); in uuid_to_string()
96 tohex(&w, 4, u->time_mid); in uuid_to_string()
98 tohex(&w, 4, u->time_hi_and_version); in uuid_to_string()
101 tohex(&w, 2, u->clock_seq_hi_and_reserved); in uuid_to_string()
102 tohex(&w, 2, u->clock_seq_low); in uuid_to_string()
104 tohex(&w, 2, u->node[0]); in uuid_to_string()
105 tohex(&w, 2, u->node[1]); in uuid_to_string()
106 tohex(&w, 2, u->node[2]); in uuid_to_string()
107 tohex(&w, 2, u->node[3]); in uuid_to_string()
[all …]
/freebsd-11-stable/contrib/gdb/gdb/gdbserver/
HDremote-utils.c234 tohex (int nib) in tohex() function
253 *hex++ = tohex ((*bin >> 4) & 0xf); in hexify()
254 *hex++ = tohex (*bin++ & 0xf); in hexify()
287 *p++ = tohex ((csum >> 4) & 0xf); in putpkt()
288 *p++ = tohex (csum & 0xf); in putpkt()
526 *to++ = tohex (nib); in convert_int_to_ascii()
528 *to++ = tohex (nib); in convert_int_to_ascii()
550 *buf++ = tohex ((regno >> 12) & 0xf); in outreg()
552 *buf++ = tohex ((regno >> 8) & 0xf); in outreg()
553 *buf++ = tohex ((regno >> 4) & 0xf); in outreg()
[all …]
HDgdbreplay.c160 tohex (int ch) in tohex() function
223 ch = tohex (ch2) << 4; in logchar()
227 ch |= tohex (ch2); in logchar()
/freebsd-11-stable/crypto/openssh/regress/unittests/test_helper/
HDtest_helper.c337 tohex(const void *_s, size_t l) in tohex() function
368 fprintf(stderr, "%12s = %s (len %zu)\n", a1, tohex(aa1, MIN(l, 256)), l); in assert_mem()
369 fprintf(stderr, "%12s = %s (len %zu)\n", a2, tohex(aa2, MIN(l, 256)), l); in assert_mem()
404 tohex(aa1, MIN(l, 20)), l > 20 ? "..." : "", l); in assert_mem_filled()
/freebsd-11-stable/crypto/openssh/
HDmisc.h60 char *tohex(const void *, size_t);
HDmisc.c813 tohex(const void *vp, size_t l) in tohex() function
HDssh_namespace.h893 #define tohex Fssh_tohex macro
HDssh.c1209 conn_hash_hex = tohex(conn_hash, ssh_digest_bytes(SSH_DIGEST_SHA1)); in main()
HDchannels.c4644 new_data = tohex(x11_fake_data, data_len);
/freebsd-11-stable/contrib/gdb/gdb/
HDremote.c127 static int tohex (int nib);
2397 tohex (int nib) in tohex() function
2415 *hex++ = tohex ((*bin >> 4) & 0xf); in bin2hex()
2416 *hex++ = tohex (*bin++ & 0xf); in bin2hex()
2602 *p++ = tohex (((int) siggnal >> 4) & 0xf); in remote_resume()
2603 *p++ = tohex (((int) siggnal) & 0xf); in remote_resume()
2640 buf[1] = tohex (((int) siggnal >> 4) & 0xf); in remote_resume()
2641 buf[2] = tohex (((int) siggnal) & 0xf); in remote_resume()
3950 *p++ = tohex ((csum >> 4) & 0xf); in putpkt_binary()
3951 *p++ = tohex (csum & 0xf); in putpkt_binary()
/freebsd-11-stable/contrib/libarchive/libarchive/
HDarchive_read_support_format_tar.c229 static int tohex(int c);
2920 int digit1 = tohex(s[1]); in url_decode()
2921 int digit2 = tohex(s[2]); in url_decode()
2938 tohex(int c) in tohex() function
/freebsd-11-stable/sbin/ifconfig/
HDifieee80211.c5128 #define tohex(x) (isdigit(x) ? (x) - '0' : tolower(x) - 'a' + 10) in get_string() macro
5129 *p++ = (tohex((u_char)val[0]) << 4) | in get_string()
5130 tohex((u_char)val[1]); in get_string()
5131 #undef tohex in get_string()
/freebsd-11-stable/contrib/binutils/gas/
HDChangeLog-00011190 (tohex): Use ISDIGIT/ISLOWER instead of isdigit/islower.