Searched refs:b64_pos (Results 1 – 1 of 1) sorted by relevance
185 size_t b64_pos = (size_t) 0; in sodium_bin2base64() local211 b64[b64_pos++] = (char) b64_byte_to_urlsafe_char((acc >> acc_len) & 0x3F); in sodium_bin2base64()215 b64[b64_pos++] = (char) b64_byte_to_urlsafe_char((acc << (6 - acc_len)) & 0x3F); in sodium_bin2base64()223 b64[b64_pos++] = (char) b64_byte_to_char((acc >> acc_len) & 0x3F); in sodium_bin2base64()227 b64[b64_pos++] = (char) b64_byte_to_char((acc << (6 - acc_len)) & 0x3F); in sodium_bin2base64()230 assert(b64_pos <= b64_len); in sodium_bin2base64()231 while (b64_pos < b64_len) { in sodium_bin2base64()232 b64[b64_pos++] = '='; in sodium_bin2base64()235 b64[b64_pos++] = 0U; in sodium_bin2base64()236 } while (b64_pos < b64_maxlen); in sodium_bin2base64()[all …]