Home
last modified time | relevance | path

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

/linux-5.19.10/lib/zstd/compress/
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()
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()
Dzstd_compress_internal.h29 #define HASH_READ_SIZE 8 macro
1013 …if (window->dictLimit - window->lowLimit < HASH_READ_SIZE) window->lowLimit = window->dictLimit; … in ZSTD_window_update()
Dzstd_compress.c3070 if (srcSize <= HASH_READ_SIZE) return 0; in ZSTD_loadDictionaryContent()
3072 while (iend - ip > HASH_READ_SIZE) { in ZSTD_loadDictionaryContent()
3094 if (chunk >= HASH_READ_SIZE && ms->dedicatedDictSearch) { in ZSTD_loadDictionaryContent()
3096 ZSTD_dedicatedDictSearch_lazy_loadDictionary(ms, ichunk-HASH_READ_SIZE); in ZSTD_loadDictionaryContent()
3097 } else if (chunk >= HASH_READ_SIZE) { in ZSTD_loadDictionaryContent()
3098 ZSTD_insertAndFindFirstIndex(ms, ichunk-HASH_READ_SIZE); in ZSTD_loadDictionaryContent()
3106 if (chunk >= HASH_READ_SIZE) in ZSTD_loadDictionaryContent()
3107 ZSTD_updateTree(ms, ichunk-HASH_READ_SIZE, ichunk); in ZSTD_loadDictionaryContent()
Dzstd_ldm.c314 BYTE const* const ilimit = iend - HASH_READ_SIZE; in ZSTD_ldm_generateSequences_internal()