Lines Matching refs:maxDist
956 U32 maxDist, in ZSTD_window_canOverflowCorrect() argument
963 + MAX(maxDist, cycleSize) in ZSTD_window_canOverflowCorrect()
979 U32 const dictionaryInvalidated = curr > maxDist + loadedDictEnd; in ZSTD_window_canOverflowCorrect()
991 U32 maxDist, in ZSTD_window_needOverflowCorrection() argument
998 if (ZSTD_window_canOverflowCorrect(window, cycleLog, maxDist, loadedDictEnd, src)) { in ZSTD_window_needOverflowCorrection()
1015 U32 maxDist, void const* src) in ZSTD_window_correctOverflow() argument
1046 + MAX(maxDist, cycleSize); in ZSTD_window_correctOverflow()
1052 assert((maxDist & (maxDist - 1)) == 0); in ZSTD_window_correctOverflow()
1074 assert(newCurrent >= maxDist); in ZSTD_window_correctOverflow()
1075 assert(newCurrent - maxDist >= ZSTD_WINDOW_START_INDEX); in ZSTD_window_correctOverflow()
1113 U32 maxDist, in ZSTD_window_enforceMaxDist() argument
1120 (unsigned)blockEndIdx, (unsigned)maxDist, (unsigned)loadedDictEnd); in ZSTD_window_enforceMaxDist()
1135 if (blockEndIdx > maxDist + loadedDictEnd) { in ZSTD_window_enforceMaxDist()
1136 U32 const newLowLimit = blockEndIdx - maxDist; in ZSTD_window_enforceMaxDist()
1158 U32 maxDist, in ZSTD_checkDictValidity() argument
1167 (unsigned)blockEndIdx, (unsigned)maxDist, (unsigned)loadedDictEnd); in ZSTD_checkDictValidity()
1170 if (blockEndIdx > loadedDictEnd + maxDist) { in ZSTD_checkDictValidity()