Searched refs:acomp (Results 1 – 3 of 3) sorted by relevance
63 struct crypto_acomp *acomp = __crypto_acomp_tfm(tfm); in crypto_acomp_exit_tfm() local64 struct acomp_alg *alg = crypto_acomp_alg(acomp); in crypto_acomp_exit_tfm()66 alg->exit(acomp); in crypto_acomp_exit_tfm()71 struct crypto_acomp *acomp = __crypto_acomp_tfm(tfm); in crypto_acomp_init_tfm() local72 struct acomp_alg *alg = crypto_acomp_alg(acomp); in crypto_acomp_init_tfm()77 acomp->compress = alg->compress; in crypto_acomp_init_tfm()78 acomp->decompress = alg->decompress; in crypto_acomp_init_tfm()79 acomp->dst_free = alg->dst_free; in crypto_acomp_init_tfm()80 acomp->reqsize = alg->reqsize; in crypto_acomp_init_tfm()83 acomp->base.exit = crypto_acomp_exit_tfm; in crypto_acomp_init_tfm()[all …]
238 struct crypto_acomp *acomp = crypto_acomp_reqtfm(req); in crypto_acomp_scomp_alloc_ctx() local239 struct crypto_tfm *tfm = crypto_acomp_tfm(acomp); in crypto_acomp_scomp_alloc_ctx()257 struct crypto_acomp *acomp = crypto_acomp_reqtfm(req); in crypto_acomp_scomp_free_ctx() local258 struct crypto_tfm *tfm = crypto_acomp_tfm(acomp); in crypto_acomp_scomp_free_ctx()
1793 struct crypto_acomp *acomp; in alg_test_comp() local1798 acomp = crypto_alloc_acomp(driver, type, mask); in alg_test_comp()1799 if (IS_ERR(acomp)) { in alg_test_comp()1801 driver, PTR_ERR(acomp)); in alg_test_comp()1802 return PTR_ERR(acomp); in alg_test_comp()1804 err = test_acomp(acomp, desc->suite.comp.comp.vecs, in alg_test_comp()1808 crypto_free_acomp(acomp); in alg_test_comp()