Home
last modified time | relevance | path

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

/freebsd/crypto/openssl/crypto/
H A Dparams_from_text.c121 size_t hexdigits = strlen(value); in prepare_from_text() local
122 if ((hexdigits % 2) != 0) { in prepare_from_text()
127 *buf_n = hexdigits >> 1; in prepare_from_text()
/freebsd/sys/contrib/openzfs/lib/libspl/
H A Dbacktrace.c55 static const char hexdigits[] = { in spl_bt_u64_to_hex_str() local
67 buf[pos++] = hexdigits[d]; in spl_bt_u64_to_hex_str()
/freebsd/crypto/heimdal/kadmin/
H A Dutil.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/contrib/netbsd-tests/kernel/
H A Dgen_t_subr_prf31 static const char hexdigits[] = "0123456789abcdef";
/freebsd/contrib/unbound/util/
H A Dnet_help.c1879 static char hexdigits[] = { in hex_ntop() local
1890 *target++ = hexdigits[src[i] >> 4U]; in hex_ntop()
1891 *target++ = hexdigits[src[i] & 0xfU]; in hex_ntop()
/freebsd/contrib/bmake/
H A Dvar.c1844 static const char hexdigits[16] = "0123456789abcdef"; in Hash() local
1894 buf[i] = hexdigits[h & 0x0f]; in Hash()
/freebsd/sys/fs/nfsserver/
H A Dnfs_nfsdport.c4840 const uint8_t *hexdigits = "0123456789abcdef"; in nfsrv_putfhname() local
4844 bufp[2 * i] = hexdigits[(*cp >> 4) & 0xf]; in nfsrv_putfhname()
4845 bufp[2 * i + 1] = hexdigits[*cp++ & 0xf]; in nfsrv_putfhname()
/freebsd/contrib/sqlite3/
H A Dsqlite3.c129732 static const char hexdigits[] = {
129776 zText[(i*2)+2] = hexdigits[(zBlob[i]>>4)&0x0F];
129777 zText[(i*2)+3] = hexdigits[(zBlob[i])&0x0F];
129903 *(z++) = hexdigits[(c>>4)&0xf];
129904 *(z++) = hexdigits[c&0xf];