Lines Matching refs:crypto_pcomp

53 struct crypto_pcomp {  struct
58 int (*compress_setup)(struct crypto_pcomp *tfm, const void *params, argument
60 int (*compress_init)(struct crypto_pcomp *tfm);
61 int (*compress_update)(struct crypto_pcomp *tfm,
63 int (*compress_final)(struct crypto_pcomp *tfm,
65 int (*decompress_setup)(struct crypto_pcomp *tfm, const void *params,
67 int (*decompress_init)(struct crypto_pcomp *tfm);
68 int (*decompress_update)(struct crypto_pcomp *tfm,
70 int (*decompress_final)(struct crypto_pcomp *tfm,
76 extern struct crypto_pcomp *crypto_alloc_pcomp(const char *alg_name, u32 type,
79 static inline struct crypto_tfm *crypto_pcomp_tfm(struct crypto_pcomp *tfm) in crypto_pcomp_tfm()
84 static inline void crypto_free_pcomp(struct crypto_pcomp *tfm) in crypto_free_pcomp()
94 static inline struct pcomp_alg *crypto_pcomp_alg(struct crypto_pcomp *tfm) in crypto_pcomp_alg()
99 static inline int crypto_compress_setup(struct crypto_pcomp *tfm, in crypto_compress_setup()
105 static inline int crypto_compress_init(struct crypto_pcomp *tfm) in crypto_compress_init()
110 static inline int crypto_compress_update(struct crypto_pcomp *tfm, in crypto_compress_update()
116 static inline int crypto_compress_final(struct crypto_pcomp *tfm, in crypto_compress_final()
122 static inline int crypto_decompress_setup(struct crypto_pcomp *tfm, in crypto_decompress_setup()
128 static inline int crypto_decompress_init(struct crypto_pcomp *tfm) in crypto_decompress_init()
133 static inline int crypto_decompress_update(struct crypto_pcomp *tfm, in crypto_decompress_update()
139 static inline int crypto_decompress_final(struct crypto_pcomp *tfm, in crypto_decompress_final()