Searched refs:tohex (Results 1 – 10 of 10) sorted by relevance
234 tohex (int nib) in tohex() function253 *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 …]
160 tohex (int ch) in tohex() function223 ch = tohex (ch2) << 4; in logchar()227 ch |= tohex (ch2); in logchar()
35 char *tohex(const void *, size_t);
545 #define tohex ssh_tohex macro
742 tohex(const void *vp, size_t l) in tohex() function
3869 new_data = tohex(x11_fake_data, data_len);
127 static int tohex (int nib);2397 tohex (int nib) in tohex() function2415 *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()
219 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
4985 #define tohex(x) (isdigit(x) ? (x) - '0' : tolower(x) - 'a' + 10) in get_string() macro4986 *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()
1190 (tohex): Use ISDIGIT/ISLOWER instead of isdigit/islower.