Home
last modified time | relevance | path

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

/trueos/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()
/trueos/crypto/openssh/
HDmisc.h35 char *tohex(const void *, size_t);
HDssh_namespace.h545 #define tohex ssh_tohex macro
HDmisc.c742 tohex(const void *vp, size_t l) in tohex() function
HDchannels.c3869 new_data = tohex(x11_fake_data, data_len);
/trueos/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()
/trueos/contrib/libarchive/libarchive/
HDarchive_read_support_format_tar.c219 static int tohex(int c);
2664 int digit1 = tohex(s[1]); in url_decode()
2665 int digit2 = tohex(s[2]); in url_decode()
2682 tohex(int c) in tohex() function
/trueos/sbin/ifconfig/
HDifieee80211.c4985 #define tohex(x) (isdigit(x) ? (x) - '0' : tolower(x) - 'a' + 10) in get_string() macro
4986 *p++ = (tohex((u_char)val[0]) << 4) | in get_string()
4987 tohex((u_char)val[1]); in get_string()
4988 #undef tohex in get_string()
/trueos/contrib/binutils/gas/
HDChangeLog-00011190 (tohex): Use ISDIGIT/ISLOWER instead of isdigit/islower.