Lines Matching defs:out_len_max
3578 unsigned int out_len_max;
3592 out_len_max = crypto_kpp_maxsize(tfm);
3593 output_buf = kzalloc(out_len_max, GFP_KERNEL);
3601 sg_init_one(&dst, output_buf, out_len_max);
3602 kpp_request_set_output(req, &dst, out_len_max);
3616 a_public = kmemdup(sg_virt(req->dst), out_len_max, GFP_KERNEL);
3640 sg_init_one(&dst, output_buf, out_len_max);
3642 kpp_request_set_output(req, &dst, out_len_max);
3670 sg_init_one(&dst, output_buf, out_len_max);
3672 kpp_request_set_output(req, &dst, out_len_max);
3762 unsigned int out_len_max, out_len = 0;
3788 out_len_max = crypto_akcipher_maxsize(tfm);
3789 outbuf_enc = kzalloc(out_len_max, GFP_KERNEL);
3804 sg_init_one(&dst, outbuf_enc, out_len_max);
3806 out_len_max);
3838 outbuf_dec = kzalloc(out_len_max, GFP_KERNEL);
3855 sg_init_one(&dst, outbuf_dec, out_len_max);
3857 akcipher_request_set_crypt(req, &src, &dst, c_size, out_len_max);