Lines Matching defs:out_len_max
3901 unsigned int out_len_max;
3915 out_len_max = crypto_kpp_maxsize(tfm);
3916 output_buf = kzalloc(out_len_max, GFP_KERNEL);
3924 sg_init_one(&dst, output_buf, out_len_max);
3925 kpp_request_set_output(req, &dst, out_len_max);
3939 a_public = kmemdup(sg_virt(req->dst), out_len_max, GFP_KERNEL);
3963 sg_init_one(&dst, output_buf, out_len_max);
3965 kpp_request_set_output(req, &dst, out_len_max);
3993 sg_init_one(&dst, output_buf, out_len_max);
3995 kpp_request_set_output(req, &dst, out_len_max);
4083 unsigned int out_len_max, out_len = 0;
4122 out_len_max = crypto_akcipher_maxsize(tfm);
4123 outbuf_enc = kzalloc(out_len_max, GFP_KERNEL);
4159 sg_init_one(&dst, outbuf_enc, out_len_max);
4161 out_len_max);
4200 outbuf_dec = kzalloc(out_len_max, GFP_KERNEL);
4218 sg_init_one(&dst, outbuf_dec, out_len_max);
4220 akcipher_request_set_crypt(req, &src, &dst, c_size, out_len_max);