Lines Matching refs:maxDistance
10887 U32 const maxDistance = 1U << windowLog; in ZSTD_getLowestMatchIndex() local
10889 …U32 const withinWindow = (current - lowestValid > maxDistance) ? current - maxDistance : lowest… in ZSTD_getLowestMatchIndex()
10900 U32 const maxDistance = 1U << windowLog; in ZSTD_getLowestPrefixIndex() local
10902 …U32 const withinWindow = (current - lowestValid > maxDistance) ? current - maxDistance : lowest… in ZSTD_getLowestPrefixIndex()
18125 const U32 maxDistance = 1U << cParams->windowLog; in ZSTD_compressBlock_fast_dictMatchState_generic() local
18127 assert(endIndex - prefixStartIndex <= maxDistance); in ZSTD_compressBlock_fast_dictMatchState_generic()
18128 … (void)maxDistance; (void)endIndex; /* these variables are not used when assert() is disabled */ in ZSTD_compressBlock_fast_dictMatchState_generic()
18470 U32 const maxDistance = 1U << cParams->windowLog; in ZSTD_insertDUBT1() local
18471 … U32 const windowLow = (current - windowValid > maxDistance) ? current - maxDistance : windowValid; in ZSTD_insertDUBT1()
18880 const U32 maxDistance = 1U << cParams->windowLog; in ZSTD_HcFindBestMatch_generic() local
18882 …const U32 withinMaxDistance = (current - lowestValid > maxDistance) ? current - maxDistance : lowe… in ZSTD_HcFindBestMatch_generic()