Home
last modified time | relevance | path

Searched refs:acomp (Results 1 – 3 of 3) sorted by relevance

/crypto/
Dacompress.c54 struct crypto_acomp *acomp = __crypto_acomp_tfm(tfm); in crypto_acomp_exit_tfm() local
55 struct acomp_alg *alg = crypto_acomp_alg(acomp); in crypto_acomp_exit_tfm()
57 alg->exit(acomp); in crypto_acomp_exit_tfm()
62 struct crypto_acomp *acomp = __crypto_acomp_tfm(tfm); in crypto_acomp_init_tfm() local
63 struct acomp_alg *alg = crypto_acomp_alg(acomp); in crypto_acomp_init_tfm()
68 acomp->compress = alg->compress; in crypto_acomp_init_tfm()
69 acomp->decompress = alg->decompress; in crypto_acomp_init_tfm()
70 acomp->dst_free = alg->dst_free; in crypto_acomp_init_tfm()
71 acomp->reqsize = alg->reqsize; in crypto_acomp_init_tfm()
74 acomp->base.exit = crypto_acomp_exit_tfm; in crypto_acomp_init_tfm()
[all …]
Dscompress.c215 struct crypto_acomp *acomp = crypto_acomp_reqtfm(req); in crypto_acomp_scomp_alloc_ctx() local
216 struct crypto_tfm *tfm = crypto_acomp_tfm(acomp); in crypto_acomp_scomp_alloc_ctx()
234 struct crypto_acomp *acomp = crypto_acomp_reqtfm(req); in crypto_acomp_scomp_free_ctx() local
235 struct crypto_tfm *tfm = crypto_acomp_tfm(acomp); in crypto_acomp_scomp_free_ctx()
Dtestmgr.c3261 struct crypto_acomp *acomp; in alg_test_comp() local
3266 acomp = crypto_alloc_acomp(driver, type, mask); in alg_test_comp()
3267 if (IS_ERR(acomp)) { in alg_test_comp()
3269 driver, PTR_ERR(acomp)); in alg_test_comp()
3270 return PTR_ERR(acomp); in alg_test_comp()
3272 err = test_acomp(acomp, desc->suite.comp.comp.vecs, in alg_test_comp()
3276 crypto_free_acomp(acomp); in alg_test_comp()