Lines Matching refs:out_len_max
2059 unsigned int out_len_max; in do_test_kpp() local
2073 out_len_max = crypto_kpp_maxsize(tfm); in do_test_kpp()
2074 output_buf = kzalloc(out_len_max, GFP_KERNEL); in do_test_kpp()
2082 sg_init_one(&dst, output_buf, out_len_max); in do_test_kpp()
2083 kpp_request_set_output(req, &dst, out_len_max); in do_test_kpp()
2097 a_public = kzalloc(out_len_max, GFP_KERNEL); in do_test_kpp()
2102 memcpy(a_public, sg_virt(req->dst), out_len_max); in do_test_kpp()
2123 sg_init_one(&dst, output_buf, out_len_max); in do_test_kpp()
2125 kpp_request_set_output(req, &dst, out_len_max); in do_test_kpp()
2154 sg_init_one(&dst, output_buf, out_len_max); in do_test_kpp()
2156 kpp_request_set_output(req, &dst, out_len_max); in do_test_kpp()
2238 unsigned int out_len_max, out_len = 0; in test_akcipher_one() local
2261 out_len_max = crypto_akcipher_maxsize(tfm); in test_akcipher_one()
2262 outbuf_enc = kzalloc(out_len_max, GFP_KERNEL); in test_akcipher_one()
2274 sg_init_one(&dst, outbuf_enc, out_len_max); in test_akcipher_one()
2276 out_len_max); in test_akcipher_one()
2306 outbuf_dec = kzalloc(out_len_max, GFP_KERNEL); in test_akcipher_one()
2318 sg_init_one(&dst, outbuf_dec, out_len_max); in test_akcipher_one()
2320 akcipher_request_set_crypt(req, &src, &dst, vecs->c_size, out_len_max); in test_akcipher_one()