Searched refs:acomp (Results 1 – 3 of 3) sorted by relevance
54 struct crypto_acomp *acomp = __crypto_acomp_tfm(tfm); in crypto_acomp_exit_tfm() local55 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() local63 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 …]
215 struct crypto_acomp *acomp = crypto_acomp_reqtfm(req); in crypto_acomp_scomp_alloc_ctx() local216 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() local235 struct crypto_tfm *tfm = crypto_acomp_tfm(acomp); in crypto_acomp_scomp_free_ctx()
3261 struct crypto_acomp *acomp; in alg_test_comp() local3266 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()