Home
last modified time | relevance | path

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

/freebsd/sys/contrib/openzfs/module/zstd/lib/compress/
H A Dzstd_fast.c25 const BYTE* const iend = ((const BYTE*)end) - HASH_READ_SIZE; in ZSTD_fillHashTable()
67 const BYTE* const ilimit = iend - HASH_READ_SIZE; in ZSTD_compressBlock_fast_generic()
223 const BYTE* const ilimit = iend - HASH_READ_SIZE; in ZSTD_compressBlock_fast_dictMatchState_generic()
H A Dzstd_double_fast.c26 const BYTE* const iend = ((const BYTE*)end) - HASH_READ_SIZE; in ZSTD_fillDoubleHashTable()
70 const BYTE* const ilimit = iend - HASH_READ_SIZE; in ZSTD_compressBlock_doubleFast_generic()
H A Dzstd_compress_internal.h36 #define HASH_READ_SIZE 8 macro
958 …if (window->dictLimit - window->lowLimit < HASH_READ_SIZE) window->lowLimit = window->dictLimit; … in ZSTD_window_update()
H A Dzstd_ldm.c279 BYTE const* const ilimit = iend - MAX(minMatchLength, HASH_READ_SIZE); in ZSTD_ldm_generateSequences_internal()
H A Dzstd_compress.c2841 if (srcSize <= HASH_READ_SIZE) return 0; in ZSTD_loadDictionaryContent()
2843 while (iend - ip > HASH_READ_SIZE) { in ZSTD_loadDictionaryContent()
2865 if (chunk >= HASH_READ_SIZE) in ZSTD_loadDictionaryContent()
2866 ZSTD_insertAndFindFirstIndex(ms, ichunk-HASH_READ_SIZE); in ZSTD_loadDictionaryContent()
2873 if (chunk >= HASH_READ_SIZE) in ZSTD_loadDictionaryContent()
2874 ZSTD_updateTree(ms, ichunk-HASH_READ_SIZE, ichunk); in ZSTD_loadDictionaryContent()
/freebsd/sys/contrib/zstd/lib/compress/
H A Dzstd_fast.c25 const BYTE* const iend = ((const BYTE*)end) - HASH_READ_SIZE; in ZSTD_fillHashTable()
109 const BYTE* const ilimit = iend - HASH_READ_SIZE; in ZSTD_compressBlock_fast_noDict_generic()
388 const BYTE* const ilimit = iend - HASH_READ_SIZE; in ZSTD_compressBlock_fast_dictMatchState_generic()
H A Dzstd_double_fast.c26 const BYTE* const iend = ((const BYTE*)end) - HASH_READ_SIZE; in ZSTD_fillDoubleHashTable()
68 const BYTE* const ilimit = iend - HASH_READ_SIZE; in ZSTD_compressBlock_doubleFast_noDict_generic()
276 const BYTE* const ilimit = iend - HASH_READ_SIZE; in ZSTD_compressBlock_doubleFast_dictMatchState_generic()
H A Dzstd_compress_internal.h35 #define HASH_READ_SIZE 8 macro
1280 …if (window->dictLimit - window->lowLimit < HASH_READ_SIZE) window->lowLimit = window->dictLimit; … in ZSTD_window_update()
H A Dzstd_ldm.c341 BYTE const* const ilimit = iend - HASH_READ_SIZE; in ZSTD_ldm_generateSequences_internal()
H A Dzstd_compress.c4242 if (srcSize <= HASH_READ_SIZE) return 0; in ZSTD_loadDictionaryContent()
4261 assert(srcSize >= HASH_READ_SIZE); in ZSTD_loadDictionaryContent()
4264 ZSTD_dedicatedDictSearch_lazy_loadDictionary(ms, iend-HASH_READ_SIZE); in ZSTD_loadDictionaryContent()
4270 ZSTD_row_update(ms, iend-HASH_READ_SIZE); in ZSTD_loadDictionaryContent()
4273 ZSTD_insertAndFindFirstIndex(ms, iend-HASH_READ_SIZE); in ZSTD_loadDictionaryContent()
4283 assert(srcSize >= HASH_READ_SIZE); in ZSTD_loadDictionaryContent()
4284 ZSTD_updateTree(ms, iend-HASH_READ_SIZE, iend); in ZSTD_loadDictionaryContent()