Home
last modified time | relevance | path

Searched refs:lznt (Results 1 – 5 of 5) sorted by relevance

/linux-5.19.10/fs/ntfs3/
Dlznt.c28 struct lznt { struct
48 static size_t longest_match_std(const u8 *src, struct lznt *ctx) in longest_match_std() argument
89 static size_t longest_match_best(const u8 *src, struct lznt *ctx) in longest_match_best()
138 static inline int compress_chunk(size_t (*match)(const u8 *, struct lznt *), in compress_chunk() argument
141 struct lznt *ctx) in compress_chunk()
297 struct lznt *get_lznt_ctx(int level) in get_lznt_ctx()
299 struct lznt *r = kzalloc(level ? offsetof(struct lznt, hash) in get_lznt_ctx()
300 : sizeof(struct lznt), in get_lznt_ctx()
316 size_t cmpr_size, struct lznt *ctx) in compress_lznt()
319 size_t (*match)(const u8 *src, struct lznt *ctx); in compress_lznt()
DMakefile24 lznt.o \
Dfrecord.c2685 struct lznt *lznt; in ni_write_frame() local
2753 lznt = NULL; in ni_write_frame()
2754 if (!sbi->compress.lznt) { in ni_write_frame()
2761 lznt = get_lznt_ctx(0); in ni_write_frame()
2762 if (!lznt) { in ni_write_frame()
2768 sbi->compress.lznt = lznt; in ni_write_frame()
2769 lznt = NULL; in ni_write_frame()
2774 frame_size, sbi->compress.lznt); in ni_write_frame()
2776 kfree(lznt); in ni_write_frame()
Dntfs_fs.h299 struct lznt *lznt; member
863 struct lznt *get_lznt_ctx(int level);
866 struct lznt *ctx);
Dsuper.c470 kfree(sbi->compress.lznt); in put_ntfs()