Lines Matching refs:src
52 static int __lzorle_compress(const u8 *src, unsigned int slen,
58 err = lzorle1x_1_compress(src, slen, dst, &tmp_len, ctx);
67 static int lzorle_compress(struct crypto_tfm *tfm, const u8 *src,
72 return __lzorle_compress(src, slen, dst, dlen, ctx->lzorle_comp_mem);
75 static int lzorle_scompress(struct crypto_scomp *tfm, const u8 *src,
79 return __lzorle_compress(src, slen, dst, dlen, ctx);
82 static int __lzorle_decompress(const u8 *src, unsigned int slen,
88 err = lzo1x_decompress_safe(src, slen, dst, &tmp_len);
97 static int lzorle_decompress(struct crypto_tfm *tfm, const u8 *src,
100 return __lzorle_decompress(src, slen, dst, dlen);
103 static int lzorle_sdecompress(struct crypto_scomp *tfm, const u8 *src,
107 return __lzorle_decompress(src, slen, dst, dlen);