Home
last modified time | relevance | path

Searched refs:reqsize (Results 1 – 8 of 8) sorted by relevance

/crypto/
Dsimd.c121 unsigned reqsize; in simd_skcipher_init() local
134 reqsize = crypto_skcipher_reqsize(cryptd_skcipher_child(cryptd_tfm)); in simd_skcipher_init()
135 reqsize = max(reqsize, crypto_skcipher_reqsize(&cryptd_tfm->base)); in simd_skcipher_init()
136 reqsize += sizeof(struct skcipher_request); in simd_skcipher_init()
138 crypto_skcipher_set_reqsize(tfm, reqsize); in simd_skcipher_init()
372 unsigned reqsize; in simd_aead_init() local
384 reqsize = crypto_aead_reqsize(cryptd_aead_child(cryptd_tfm)); in simd_aead_init()
385 reqsize = max(reqsize, crypto_aead_reqsize(&cryptd_tfm->base)); in simd_aead_init()
386 reqsize += sizeof(struct aead_request); in simd_aead_init()
388 crypto_aead_set_reqsize(tfm, reqsize); in simd_aead_init()
Dacompress.c71 acomp->reqsize = alg->reqsize; in crypto_acomp_init_tfm()
Dctr.c230 unsigned int reqsize; in crypto_rfc3686_init_tfm() local
240 reqsize = align + sizeof(struct crypto_rfc3686_req_ctx) + in crypto_rfc3686_init_tfm()
242 crypto_skcipher_set_reqsize(tfm, reqsize); in crypto_rfc3686_init_tfm()
Dcts.c293 unsigned reqsize; in crypto_cts_init_tfm() local
305 reqsize = ALIGN(sizeof(struct crypto_cts_reqctx) + in crypto_cts_init_tfm()
310 crypto_skcipher_set_reqsize(tfm, reqsize); in crypto_cts_init_tfm()
Dscompress.c208 crt->reqsize = sizeof(void *); in crypto_init_scomp_ops_async()
Drsa-pkcs1pad.c687 inst->alg.reqsize = sizeof(struct pkcs1pad_request) + rsa_alg->reqsize; in pkcs1pad_create()
Dshash.c384 crt->reqsize = sizeof(struct shash_desc) + crypto_shash_descsize(shash); in crypto_init_shash_ops_async()
Dskcipher.c788 skcipher->reqsize = crypto_ablkcipher_reqsize(ablkcipher) + in crypto_init_skcipher_ops_ablkcipher()