Lines Matching refs:maxDist
827 U32 maxDist, void const* src) in ZSTD_window_correctOverflow() argument
853 U32 const newCurrent = currentCycle1 + maxDist; in ZSTD_window_correctOverflow()
855 assert((maxDist & cycleMask) == 0); in ZSTD_window_correctOverflow()
868 assert(newCurrent >= maxDist); in ZSTD_window_correctOverflow()
869 assert(newCurrent - maxDist >= 1); in ZSTD_window_correctOverflow()
905 U32 maxDist, in ZSTD_window_enforceMaxDist() argument
912 (unsigned)blockEndIdx, (unsigned)maxDist, (unsigned)loadedDictEnd); in ZSTD_window_enforceMaxDist()
927 if (blockEndIdx > maxDist + loadedDictEnd) { in ZSTD_window_enforceMaxDist()
928 U32 const newLowLimit = blockEndIdx - maxDist; in ZSTD_window_enforceMaxDist()
950 U32 maxDist, in ZSTD_checkDictValidity() argument
959 (unsigned)blockEndIdx, (unsigned)maxDist, (unsigned)loadedDictEnd); in ZSTD_checkDictValidity()
962 if (blockEndIdx > loadedDictEnd + maxDist) { in ZSTD_checkDictValidity()