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

/freebsd-13-stable/lib/libc/nameser/
H A Dns_print.c79 static const char base32hex[] = variable
779 tmp[0] = base32hex[((rdata[0]>>3)&0x1f)];
780 tmp[1] = base32hex[((rdata[0]<<2)&0x1c)];
785 tmp[0] = base32hex[((rdata[0]>>3)&0x1f)];
786 tmp[1] = base32hex[((rdata[0]<<2)&0x1c)|
788 tmp[2] = base32hex[((rdata[1]>>1)&0x1f)];
789 tmp[3] = base32hex[((rdata[1]<<4)&0x10)];
793 tmp[0] = base32hex[((rdata[0]>>3)&0x1f)];
794 tmp[1] = base32hex[((rdata[0]<<2)&0x1c)|
796 tmp[2] = base32hex[((rdat
[all...]
/freebsd-13-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-13-stable/contrib/apr/encoding/
H A Dapr_encode.c205 static const char base32hex[] = variable
587 base = base32hex;
691 base = base32hex;

Completed in 167 milliseconds