Searched refs:base32hex (Results 1 - 3 of 3) sorted by relevance

/freebsd-11-stable/lib/libc/nameser/
H A Dns_print.c77 static const char base32hex[] = variable
777 tmp[0] = base32hex[((rdata[0]>>3)&0x1f)];
778 tmp[1] = base32hex[((rdata[0]<<2)&0x1c)];
783 tmp[0] = base32hex[((rdata[0]>>3)&0x1f)];
784 tmp[1] = base32hex[((rdata[0]<<2)&0x1c)|
786 tmp[2] = base32hex[((rdata[1]>>1)&0x1f)];
787 tmp[3] = base32hex[((rdata[1]<<4)&0x10)];
791 tmp[0] = base32hex[((rdata[0]>>3)&0x1f)];
792 tmp[1] = base32hex[((rdata[0]<<2)&0x1c)|
794 tmp[2] = base32hex[((rdat
[all...]
/freebsd-11-stable/contrib/ntp/lib/isc/
H A Dbase32.c52 static const char base32hex[] = variable
132 base32hex));
293 return (base32_tobuffer(lexer, base32hex, target, length));
320 return (base32_decodestring(cstr, base32hex, target));
344 return (base32_decoderegion(source, base32hex, target));
/freebsd-11-stable/contrib/apr/encoding/
H A Dapr_encode.c205 static const char base32hex[] = variable
587 base = base32hex;
691 base = base32hex;

Completed in 126 milliseconds