Home
last modified time | relevance | path

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

/Linux-v6.6/fs/ntfs3/
Dlznt.c20 #define LZNT_CHUNK_SIZE 0x1000 macro
35 struct lznt_hash hash[LZNT_CHUNK_SIZE];
56 (LZNT_CHUNK_SIZE - 1); in longest_match_std()
154 if (unc + LZNT_CHUNK_SIZE < unc_end) in compress_chunk()
155 unc_end = unc + LZNT_CHUNK_SIZE; in compress_chunk()
157 last = min(cmpr + LZNT_CHUNK_SIZE + sizeof(short), cmpr_end); in compress_chunk()
211 if ((cmpr + LZNT_CHUNK_SIZE + sizeof(short)) > last) in compress_chunk()
221 memcpy(cmpr + sizeof(short), unc, LZNT_CHUNK_SIZE); in compress_chunk()
222 *cmpr_chunk_size = LZNT_CHUNK_SIZE + sizeof(short); in compress_chunk()
334 for (; unc_chunk < unc_end; unc_chunk += LZNT_CHUNK_SIZE) { in compress_lznt()
[all …]