Lines Matching refs:out_len_max
3759 unsigned int out_len_max; in do_test_kpp() local
3773 out_len_max = crypto_kpp_maxsize(tfm); in do_test_kpp()
3774 output_buf = kzalloc(out_len_max, GFP_KERNEL); in do_test_kpp()
3782 sg_init_one(&dst, output_buf, out_len_max); in do_test_kpp()
3783 kpp_request_set_output(req, &dst, out_len_max); in do_test_kpp()
3797 a_public = kmemdup(sg_virt(req->dst), out_len_max, GFP_KERNEL); in do_test_kpp()
3821 sg_init_one(&dst, output_buf, out_len_max); in do_test_kpp()
3823 kpp_request_set_output(req, &dst, out_len_max); in do_test_kpp()
3851 sg_init_one(&dst, output_buf, out_len_max); in do_test_kpp()
3853 kpp_request_set_output(req, &dst, out_len_max); in do_test_kpp()
3941 unsigned int out_len_max, out_len = 0; in test_akcipher_one() local
3980 out_len_max = crypto_akcipher_maxsize(tfm); in test_akcipher_one()
3981 outbuf_enc = kzalloc(out_len_max, GFP_KERNEL); in test_akcipher_one()
4017 sg_init_one(&dst, outbuf_enc, out_len_max); in test_akcipher_one()
4019 out_len_max); in test_akcipher_one()
4058 outbuf_dec = kzalloc(out_len_max, GFP_KERNEL); in test_akcipher_one()
4076 sg_init_one(&dst, outbuf_dec, out_len_max); in test_akcipher_one()
4078 akcipher_request_set_crypt(req, &src, &dst, c_size, out_len_max); in test_akcipher_one()