Lines Matching defs:lznt
28 struct lznt {
48 static size_t longest_match_std(const u8 *src, struct lznt *ctx)
89 static size_t longest_match_best(const u8 *src, struct lznt *ctx)
138 static inline int compress_chunk(size_t (*match)(const u8 *, struct lznt *),
141 struct lznt *ctx)
300 struct lznt *get_lznt_ctx(int level)
302 struct lznt *r = kzalloc(level ? offsetof(struct lznt, hash) :
303 sizeof(struct lznt),
319 size_t cmpr_size, struct lznt *ctx)
322 size_t (*match)(const u8 *src, struct lznt *ctx);