Home
last modified time | relevance | path

Searched refs:hexdigits (Results 1 – 5 of 5) sorted by relevance

/freebsd-11-stable/crypto/heimdal/kadmin/
HDutil.c616 static char hexdigits[] = "0123456789abcdef"; in hex2n() local
619 p = strchr (hexdigits, tolower((unsigned char)c)); in hex2n()
623 return p - hexdigits; in hex2n()
/freebsd-11-stable/contrib/netbsd-tests/kernel/
HDgen_t_subr_prf31 static const char hexdigits[] = "0123456789abcdef";
/freebsd-11-stable/contrib/bmake/
HDvar.c2377 static const char hexdigits[16] = "0123456789abcdef"; in VarHash() local
2421 Buf_AddByte(&buf, hexdigits[h & 15]); in VarHash()
/freebsd-11-stable/crypto/heimdal/lib/sqlite/
HDsqlite3.c84891 static const char hexdigits[] = {
84925 zText[(i*2)+2] = hexdigits[(zBlob[i]>>4)&0x0F];
84926 zText[(i*2)+3] = hexdigits[(zBlob[i])&0x0F];
84989 *(z++) = hexdigits[(c>>4)&0xf];
84990 *(z++) = hexdigits[c&0xf];
/freebsd-11-stable/contrib/sqlite3/
HDsqlite3.c119447 static const char hexdigits[] = {
119488 zText[(i*2)+2] = hexdigits[(zBlob[i]>>4)&0x0F];
119489 zText[(i*2)+3] = hexdigits[(zBlob[i])&0x0F];
119608 *(z++) = hexdigits[(c>>4)&0xf];
119609 *(z++) = hexdigits[c&0xf];