Lines Matching defs:acomp
43 strscpy(racomp.type, "acomp", sizeof(racomp.type));
53 seq_puts(m, "type : acomp\n");
58 struct crypto_acomp *acomp = __crypto_acomp_tfm(tfm);
59 struct acomp_alg *alg = crypto_acomp_alg(acomp);
61 alg->exit(acomp);
66 struct crypto_acomp *acomp = __crypto_acomp_tfm(tfm);
67 struct acomp_alg *alg = crypto_acomp_alg(acomp);
72 acomp->compress = alg->compress;
73 acomp->decompress = alg->decompress;
74 acomp->dst_free = alg->dst_free;
75 acomp->reqsize = alg->reqsize;
78 acomp->base.exit = crypto_acomp_exit_tfm;
81 return alg->init(acomp);
105 strscpy(racomp.type, "acomp", sizeof(racomp.type));
155 struct acomp_req *acomp_request_alloc(struct crypto_acomp *acomp)
157 struct crypto_tfm *tfm = crypto_acomp_tfm(acomp);
160 req = __acomp_request_alloc(acomp);
170 struct crypto_acomp *acomp = crypto_acomp_reqtfm(req);
171 struct crypto_tfm *tfm = crypto_acomp_tfm(acomp);
177 acomp->dst_free(req->dst);