Home
last modified time | relevance | path

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

/f-stack/freebsd/contrib/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.h35 #define HASH_READ_SIZE 8 macro
1030 …if (window->dictLimit - window->lowLimit < HASH_READ_SIZE) window->lowLimit = window->dictLimit; … in ZSTD_window_update()
H A Dzstd_compress.c3097 if (srcSize <= HASH_READ_SIZE) return 0; in ZSTD_loadDictionaryContent()
3099 while (iend - ip > HASH_READ_SIZE) { in ZSTD_loadDictionaryContent()
3121 if (chunk >= HASH_READ_SIZE && ms->dedicatedDictSearch) { in ZSTD_loadDictionaryContent()
3123 ZSTD_dedicatedDictSearch_lazy_loadDictionary(ms, ichunk-HASH_READ_SIZE); in ZSTD_loadDictionaryContent()
3124 } else if (chunk >= HASH_READ_SIZE) { in ZSTD_loadDictionaryContent()
3125 ZSTD_insertAndFindFirstIndex(ms, ichunk-HASH_READ_SIZE); in ZSTD_loadDictionaryContent()
3133 if (chunk >= HASH_READ_SIZE) in ZSTD_loadDictionaryContent()
3134 ZSTD_updateTree(ms, ichunk-HASH_READ_SIZE, ichunk); in ZSTD_loadDictionaryContent()
H A Dzstd_ldm.c293 BYTE const* const ilimit = iend - MAX(minMatchLength, HASH_READ_SIZE); in ZSTD_ldm_generateSequences_internal()
/f-stack/freebsd/contrib/openzfs/module/zstd/lib/
H A Dzstd.c9947 #define HASH_READ_SIZE 8 macro
15925 if (srcSize <= HASH_READ_SIZE) return 0; in ZSTD_loadDictionaryContent()
15927 while (iend - ip > HASH_READ_SIZE) { in ZSTD_loadDictionaryContent()
15949 if (chunk >= HASH_READ_SIZE) in ZSTD_loadDictionaryContent()
15957 if (chunk >= HASH_READ_SIZE) in ZSTD_loadDictionaryContent()
15958 ZSTD_updateTree(ms, ichunk-HASH_READ_SIZE, ichunk); in ZSTD_loadDictionaryContent()
17390 const BYTE* const iend = ((const BYTE*)end) - HASH_READ_SIZE; in ZSTD_fillDoubleHashTable()
17434 const BYTE* const ilimit = iend - HASH_READ_SIZE; in ZSTD_compressBlock_doubleFast_generic()
17912 const BYTE* const iend = ((const BYTE*)end) - HASH_READ_SIZE; in ZSTD_fillHashTable()
17954 const BYTE* const ilimit = iend - HASH_READ_SIZE; in ZSTD_compressBlock_fast_generic()
[all …]