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 …]
221 struct crypto_acomp *acomp = crypto_acomp_reqtfm(req); in crypto_acomp_scomp_alloc_ctx() local222 struct crypto_tfm *tfm = crypto_acomp_tfm(acomp); in crypto_acomp_scomp_alloc_ctx()240 struct crypto_acomp *acomp = crypto_acomp_reqtfm(req); in crypto_acomp_scomp_free_ctx() local241 struct crypto_tfm *tfm = crypto_acomp_tfm(acomp); in crypto_acomp_scomp_free_ctx()
3273 struct crypto_acomp *acomp; in alg_test_comp() local3278 acomp = crypto_alloc_acomp(driver, type, mask); in alg_test_comp()3279 if (IS_ERR(acomp)) { in alg_test_comp()3281 driver, PTR_ERR(acomp)); in alg_test_comp()3282 return PTR_ERR(acomp); in alg_test_comp()3284 err = test_acomp(acomp, desc->suite.comp.comp.vecs, in alg_test_comp()3288 crypto_free_acomp(acomp); in alg_test_comp()