HomeSort by: relevance | last modified time | path
    Searched defs:acc_len (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/external/isc/libsodium/dist/src/libsodium/sodium/
codecs.c 183 size_t acc_len = (size_t) 0; local in function:sodium_bin2base64
208 acc_len += 8;
209 while (acc_len >= 6) {
210 acc_len -= 6;
211 b64[b64_pos++] = (char) b64_byte_to_urlsafe_char((acc >> acc_len) & 0x3F);
214 if (acc_len > 0) {
215 b64[b64_pos++] = (char) b64_byte_to_urlsafe_char((acc << (6 - acc_len)) & 0x3F);
220 acc_len += 8;
221 while (acc_len >= 6) {
222 acc_len -= 6
271 size_t acc_len = (size_t) 0; local in function:sodium_base642bin
    [all...]
  /src/lib/libcrypt/
crypt-argon2.c 106 unsigned acc, acc_len; local in function:from_base64
111 acc_len = 0;
121 acc_len += 6;
122 if (acc_len >= 8) {
123 acc_len -= 8;
127 *buf++ = (acc >> acc_len) & 0xFF;
137 if (acc_len > 4 || (acc & (((unsigned)1 << acc_len) - 1)) != 0) {

Completed in 13 milliseconds