Lines Matching refs:maxDist

10683                                            U32 maxDist, void const* src)  in ZSTD_window_correctOverflow()  argument
10709 U32 const newCurrent = currentCycle1 + maxDist; in ZSTD_window_correctOverflow()
10711 assert((maxDist & cycleMask) == 0); in ZSTD_window_correctOverflow()
10724 assert(newCurrent >= maxDist); in ZSTD_window_correctOverflow()
10725 assert(newCurrent - maxDist >= 1); in ZSTD_window_correctOverflow()
10761 U32 maxDist, in ZSTD_window_enforceMaxDist() argument
10768 (unsigned)blockEndIdx, (unsigned)maxDist, (unsigned)loadedDictEnd); in ZSTD_window_enforceMaxDist()
10783 if (blockEndIdx > maxDist + loadedDictEnd) { in ZSTD_window_enforceMaxDist()
10784 U32 const newLowLimit = blockEndIdx - maxDist; in ZSTD_window_enforceMaxDist()
10806 U32 maxDist, in ZSTD_checkDictValidity() argument
10815 (unsigned)blockEndIdx, (unsigned)maxDist, (unsigned)loadedDictEnd); in ZSTD_checkDictValidity()
10818 if (blockEndIdx > loadedDictEnd + maxDist) { in ZSTD_checkDictValidity()
15642 U32 const maxDist = (U32)1 << params->cParams.windowLog; in ZSTD_overflowCorrectIfNeeded() local
15644 U32 const correction = ZSTD_window_correctOverflow(&ms->window, cycleLog, maxDist, ip); in ZSTD_overflowCorrectIfNeeded()
15676 U32 const maxDist = (U32)1 << cctx->appliedParams.cParams.windowLog; in ZSTD_compress_frameChunk() local
15695 …ZSTD_checkDictValidity(&ms->window, ip + blockSize, maxDist, &ms->loadedDictEnd, &ms->dictMatchSta… in ZSTD_compress_frameChunk()
19958 U32 const maxDist = 1U << params->windowLog; in ZSTD_ldm_generateSequences() local
19990 &ldmState->window, /* cycleLog */ 0, maxDist, chunkStart); in ZSTD_ldm_generateSequences()
20009 … ZSTD_window_enforceMaxDist(&ldmState->window, chunkEnd, maxDist, &ldmState->loadedDictEnd, NULL); in ZSTD_ldm_generateSequences()