Lines Matching refs:comp
47 struct zcomp_strm *(*strm_find)(struct zcomp *comp);
48 void (*strm_release)(struct zcomp *comp, struct zcomp_strm *zstrm);
49 bool (*set_max_streams)(struct zcomp *comp, int num_strm);
50 void (*destroy)(struct zcomp *comp);
53 ssize_t zcomp_available_show(const char *comp, char *buf);
54 bool zcomp_available_algorithm(const char *comp);
56 struct zcomp *zcomp_create(const char *comp, int max_strm);
57 void zcomp_destroy(struct zcomp *comp);
59 struct zcomp_strm *zcomp_strm_find(struct zcomp *comp);
60 void zcomp_strm_release(struct zcomp *comp, struct zcomp_strm *zstrm);
62 int zcomp_compress(struct zcomp *comp, struct zcomp_strm *zstrm,
65 int zcomp_decompress(struct zcomp *comp, const unsigned char *src,
68 bool zcomp_set_max_streams(struct zcomp *comp, int num_strm);