Lines Matching refs:out_len
231 * Return an allocated buffer, set |out_len|. If |input_len|
235 size_t *out_len)
241 *out_len = 0;
263 *out_len = p - ret;
695 size_t in_len, out_len, donelen = 0;
710 out_len = expected->ciphertext_len;
715 out_len = expected->plaintext_len;
859 if (!EVP_CipherUpdate(ctx, NULL, &tmplen, NULL, out_len)) {
967 if ((int)out_len > tmplen + tmpflen)
968 out_len = tmplen + tmpflen;
970 if (!memory_err_compare(t, "VALUE_MISMATCH", expected_out, out_len,