Searched refs:hexchar (Results 1 - 6 of 6) sorted by relevance

/freebsd-current/crypto/heimdal/lib/roken/
H A Dhex.c40 static const char hexchar[16] = "0123456789ABCDEF"; variable
47 for (p = hexchar; *p; p++)
49 return p - hexchar;
73 p[i * 2] = hexchar[(*q >> 4) & 0xf];
74 p[i * 2 + 1] = hexchar[*q & 0xf];
/freebsd-current/contrib/unbound/util/
H A Dlog.c376 const char* hexchar = "0123456789ABCDEF"; local
391 buf[j*2] = hexchar[ data8[i+j] >> 4 ];
392 buf[j*2 + 1] = hexchar[ data8[i+j] & 0xF ];
/freebsd-current/contrib/ntp/ntpd/
H A Drefclock_irig.c203 static char hexchar[] = "0123456789abcdef"; variable
885 up->timecode[--up->xptr] = hexchar[temp & 0xf];
886 up->timecode[--up->xptr] = hexchar[(temp >> 5) &
H A Drefclock_chu.c433 static char hexchar[] = "0123456789abcdef_*="; variable
1148 code[2 * i] = hexchar[up->cbuf[i] & 0xf];
1149 code[2 * i + 1] = hexchar[(up->cbuf[i] >>
1472 code[i] = hexchar[k];
/freebsd-current/crypto/heimdal/lib/hdb/
H A Dhdb-ldap.c803 static const char hexchar[] = "0123456789ABCDEF"; variable
824 (*quoted)[i++] = hexchar[(unquoted[0] >> 4) & 0xf];
825 (*quoted)[i++] = hexchar[(unquoted[0] ) & 0xf];
/freebsd-current/crypto/openssh/
H A Dmisc.c928 hexchar(const char *s) function
968 (ch = hexchar(src + 1)) == -1) {

Completed in 334 milliseconds