OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:b64_pos
(Results
1 - 2
of
2
) sorted by relevancy
/src/sys/external/isc/libsodium/dist/src/libsodium/sodium/
codecs.c
185
size_t
b64_pos
= (size_t) 0;
local in function:sodium_bin2base64
211
b64[
b64_pos
++] = (char) b64_byte_to_urlsafe_char((acc >> acc_len) & 0x3F);
215
b64[
b64_pos
++] = (char) b64_byte_to_urlsafe_char((acc << (6 - acc_len)) & 0x3F);
223
b64[
b64_pos
++] = (char) b64_byte_to_char((acc >> acc_len) & 0x3F);
227
b64[
b64_pos
++] = (char) b64_byte_to_char((acc << (6 - acc_len)) & 0x3F);
230
assert(
b64_pos
<= b64_len);
231
while (
b64_pos
< b64_len) {
232
b64[
b64_pos
++] = '=';
235
b64[
b64_pos
++] = 0U;
236
} while (
b64_pos
< b64_maxlen)
272
size_t
b64_pos
= (size_t) 0;
local in function:sodium_base642bin
[
all
...]
codecs.c
185
size_t
b64_pos
= (size_t) 0;
local in function:sodium_bin2base64
211
b64[
b64_pos
++] = (char) b64_byte_to_urlsafe_char((acc >> acc_len) & 0x3F);
215
b64[
b64_pos
++] = (char) b64_byte_to_urlsafe_char((acc << (6 - acc_len)) & 0x3F);
223
b64[
b64_pos
++] = (char) b64_byte_to_char((acc >> acc_len) & 0x3F);
227
b64[
b64_pos
++] = (char) b64_byte_to_char((acc << (6 - acc_len)) & 0x3F);
230
assert(
b64_pos
<= b64_len);
231
while (
b64_pos
< b64_len) {
232
b64[
b64_pos
++] = '=';
235
b64[
b64_pos
++] = 0U;
236
} while (
b64_pos
< b64_maxlen)
272
size_t
b64_pos
= (size_t) 0;
local in function:sodium_base642bin
[
all
...]
Completed in 20 milliseconds
Indexes created Wed Oct 01 15:09:59 GMT 2025