OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:base32hex
(Results
1 - 4
of
4
) sorted by relevancy
/src/lib/libc/nameser/
ns_print.c
79
static const char
base32hex
[] =
variable
780
tmp[0] =
base32hex
[(((uint32_t)rdata[0]>>3)&0x1f)];
781
tmp[1] =
base32hex
[(((uint32_t)rdata[0]<<2)&0x1c)];
786
tmp[0] =
base32hex
[(((uint32_t)rdata[0]>>3)&0x1f)];
787
tmp[1] =
base32hex
[(((uint32_t)rdata[0]<<2)&0x1c)|
789
tmp[2] =
base32hex
[(((uint32_t)rdata[1]>>1)&0x1f)];
790
tmp[3] =
base32hex
[(((uint32_t)rdata[1]<<4)&0x10)];
794
tmp[0] =
base32hex
[(((uint32_t)rdata[0]>>3)&0x1f)];
795
tmp[1] =
base32hex
[(((uint32_t)rdata[0]<<2)&0x1c)|
797
tmp[2] =
base32hex
[(((uint32_t)rdata[1]>>1)&0x1f)]
[
all
...]
/src/external/bsd/libbind/dist/nameser/
ns_print.c
72
static const char
base32hex
[] =
variable
768
tmp[0] =
base32hex
[((rdata[0]>>3)&0x1f)];
769
tmp[1] =
base32hex
[((rdata[0]<<2)&0x1c)];
774
tmp[0] =
base32hex
[((rdata[0]>>3)&0x1f)];
775
tmp[1] =
base32hex
[((rdata[0]<<2)&0x1c)|
777
tmp[2] =
base32hex
[((rdata[1]>>1)&0x1f)];
778
tmp[3] =
base32hex
[((rdata[1]<<4)&0x10)];
782
tmp[0] =
base32hex
[((rdata[0]>>3)&0x1f)];
783
tmp[1] =
base32hex
[((rdata[0]<<2)&0x1c)|
785
tmp[2] =
base32hex
[((rdata[1]>>1)&0x1f)]
[
all
...]
/src/external/mpl/bind/dist/lib/isc/
base32.c
42
static const char
base32hex
[] = "0123456789ABCDEFGHIJKLMNOPQRSTUV="
variable
121
return base32_totext(source, wordlength, wordbreak, target,
base32hex
,
128
return base32_totext(source, wordlength, wordbreak, target,
base32hex
,
325
return base32_tobuffer(lexer,
base32hex
, true, target, length);
330
return base32_tobuffer(lexer,
base32hex
, false, target, length);
361
return base32_decodestring(cstr,
base32hex
, true, target);
366
return base32_decodestring(cstr,
base32hex
, false, target);
392
return base32_decoderegion(source,
base32hex
, true, target);
397
return base32_decoderegion(source,
base32hex
, false, target);
/src/external/mpl/dhcp/bind/dist/lib/isc/
base32.c
49
static const char
base32hex
[] = "0123456789ABCDEFGHIJKLMNOPQRSTUV="
variable
128
return (base32_totext(source, wordlength, wordbreak, target,
base32hex
,
135
return (base32_totext(source, wordlength, wordbreak, target,
base32hex
,
344
return (base32_tobuffer(lexer,
base32hex
, true, target, length));
349
return (base32_tobuffer(lexer,
base32hex
, false, target, length));
379
return (base32_decodestring(cstr,
base32hex
, true, target));
384
return (base32_decodestring(cstr,
base32hex
, false, target));
409
return (base32_decoderegion(source,
base32hex
, true, target));
414
return (base32_decoderegion(source,
base32hex
, false, target));
Completed in 26 milliseconds
Indexes created Sun Mar 01 05:31:48 UTC 2026