Lines Matching defs:acomp
33 strscpy(racomp.type, "acomp", sizeof(racomp.type));
49 seq_puts(m, "type : acomp\n");
54 struct crypto_acomp *acomp = __crypto_acomp_tfm(tfm);
55 struct acomp_alg *alg = crypto_acomp_alg(acomp);
57 alg->exit(acomp);
62 struct crypto_acomp *acomp = __crypto_acomp_tfm(tfm);
63 struct acomp_alg *alg = crypto_acomp_alg(acomp);
68 acomp->compress = alg->compress;
69 acomp->decompress = alg->decompress;
70 acomp->dst_free = alg->dst_free;
71 acomp->reqsize = alg->reqsize;
74 acomp->base.exit = crypto_acomp_exit_tfm;
77 return alg->init(acomp);
120 struct acomp_req *acomp_request_alloc(struct crypto_acomp *acomp)
122 struct crypto_tfm *tfm = crypto_acomp_tfm(acomp);
125 req = __acomp_request_alloc(acomp);
135 struct crypto_acomp *acomp = crypto_acomp_reqtfm(req);
136 struct crypto_tfm *tfm = crypto_acomp_tfm(acomp);
142 acomp->dst_free(req->dst);