Home
last modified time | relevance | path

Searched refs:hexchar (Results 1 – 7 of 7) sorted by relevance

/freebsd/crypto/heimdal/lib/roken/
H A Dhex.c40 static const char hexchar[16] = "0123456789ABCDEF"; variable
47 for (p = hexchar; *p; p++) in pos()
49 return p - hexchar; in pos()
73 p[i * 2] = hexchar[(*q >> 4) & 0xf]; in hex_encode()
74 p[i * 2 + 1] = hexchar[*q & 0xf]; in hex_encode()
/freebsd/contrib/unbound/util/
H A Dlog.c412 const char* hexchar = "0123456789ABCDEF"; in log_hex_f() local
427 buf[j*2] = hexchar[ data8[i+j] >> 4 ]; in log_hex_f()
428 buf[j*2 + 1] = hexchar[ data8[i+j] & 0xF ]; in log_hex_f()
/freebsd/contrib/ntp/ntpd/
H A Drefclock_irig.c203 static char hexchar[] = "0123456789abcdef"; variable
885 up->timecode[--up->xptr] = hexchar[temp & 0xf]; in irig_decode()
886 up->timecode[--up->xptr] = hexchar[(temp >> 5) & in irig_decode()
H A Drefclock_chu.c433 static char hexchar[] = "0123456789abcdef_*="; variable
1148 code[2 * i] = hexchar[up->cbuf[i] & 0xf]; in chu_b()
1149 code[2 * i + 1] = hexchar[(up->cbuf[i] >> in chu_b()
1472 code[i] = hexchar[k]; in chu_major()
/freebsd/crypto/heimdal/lib/hdb/
H A Dhdb-ldap.c803 static const char hexchar[] = "0123456789ABCDEF"; in escape_value()
824 (*quoted)[i++] = hexchar[(unquoted[0] >> 4) & 0xf]; in escape_value()
825 (*quoted)[i++] = hexchar[(unquoted[0] ) & 0xf]; in escape_value()
800 const static char hexchar[] = "0123456789ABCDEF"; global() variable
/freebsd/crypto/openssh/
H A Dmisc.c928 hexchar(const char *s) in hexchar() function
968 (ch = hexchar(src + 1)) == -1) { in urldecode()
/freebsd/contrib/sendmail/
H A DRELEASE_NOTES5135 RFC 1891 requires "hexchar" in a "xtext" to be upper case. Patch