Lines Matching refs:ctx
20 void *ctx; in lzorle_alloc_ctx() local
22 ctx = kvmalloc(LZO1X_MEM_COMPRESS, GFP_KERNEL); in lzorle_alloc_ctx()
23 if (!ctx) in lzorle_alloc_ctx()
26 return ctx; in lzorle_alloc_ctx()
31 struct lzorle_ctx *ctx = crypto_tfm_ctx(tfm); in lzorle_init() local
33 ctx->lzorle_comp_mem = lzorle_alloc_ctx(NULL); in lzorle_init()
34 if (IS_ERR(ctx->lzorle_comp_mem)) in lzorle_init()
40 static void lzorle_free_ctx(struct crypto_scomp *tfm, void *ctx) in lzorle_free_ctx() argument
42 kvfree(ctx); in lzorle_free_ctx()
47 struct lzorle_ctx *ctx = crypto_tfm_ctx(tfm); in lzorle_exit() local
49 lzorle_free_ctx(NULL, ctx->lzorle_comp_mem); in lzorle_exit()
53 u8 *dst, unsigned int *dlen, void *ctx) in __lzorle_compress() argument
58 err = lzorle1x_1_compress(src, slen, dst, &tmp_len, ctx); in __lzorle_compress()
70 struct lzorle_ctx *ctx = crypto_tfm_ctx(tfm); in lzorle_compress() local
72 return __lzorle_compress(src, slen, dst, dlen, ctx->lzorle_comp_mem); in lzorle_compress()
77 void *ctx) in lzorle_scompress() argument
79 return __lzorle_compress(src, slen, dst, dlen, ctx); in lzorle_scompress()
105 void *ctx) in lzorle_sdecompress() argument