Home
last modified time | relevance | path

Searched refs:num_bytes_resulting (Results 1 – 1 of 1) sorted by relevance

/external/boringssl/src/crypto/base64/
Dbase64.c354 size_t num_bytes_resulting; in EVP_DecodeUpdate() local
355 if (!base64_decode_quad(out, &num_bytes_resulting, ctx->data)) { in EVP_DecodeUpdate()
361 bytes_out += num_bytes_resulting; in EVP_DecodeUpdate()
362 out += num_bytes_resulting; in EVP_DecodeUpdate()
364 if (num_bytes_resulting < 3) { in EVP_DecodeUpdate()
409 size_t num_bytes_resulting; in EVP_DecodeBase64() local
411 if (!base64_decode_quad(out, &num_bytes_resulting, &in[i])) { in EVP_DecodeBase64()
415 bytes_out += num_bytes_resulting; in EVP_DecodeBase64()
416 out += num_bytes_resulting; in EVP_DecodeBase64()
417 if (num_bytes_resulting != 3 && i != in_len - 4) { in EVP_DecodeBase64()