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

/freebsd-9.3-release/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-9.3-release/crypto/openssh/
H A Dmisc.h35 char *tohex(const void *, size_t);
H A Dssh_namespace.h545 #define tohex ssh_tohex macro
H A Dmisc.c743 tohex(const void *vp, size_t l) function
750 return xstrdup("tohex: length > 65536");
H A Dchannels.c3870 new_data = tohex(x11_fake_data, data_len);
/freebsd-9.3-release/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-9.3-release/contrib/libarchive/libarchive/
H A Darchive_read_support_format_tar.c230 static int tohex(int c);
2390 int digit1 = tohex(s[1]);
2391 int digit2 = tohex(s[2]);
2408 tohex(int c) function
/freebsd-9.3-release/sbin/ifconfig/
H A Difieee80211.c4939 #define tohex(x) (isdigit(x) ? (x) - '0' : tolower(x) - 'a' + 10) macro
4940 *p++ = (tohex((u_char)val[0]) << 4) |
4941 tohex((u_char)val[1]);
4942 #undef tohex macro

Completed in 133 milliseconds