Lines Matching refs:dictLimit
62 const U32 lowestIndex = ms->window.dictLimit; in ZSTD_compressBlock_doubleFast_generic()
197 const U32 dictLimit = ms->window.dictLimit; in ZSTD_compressBlock_doubleFast_extDict_generic() local
198 const BYTE* const lowPrefixPtr = base + dictLimit; in ZSTD_compressBlock_doubleFast_extDict_generic()
199 const BYTE* const dictEnd = dictBase + dictLimit; in ZSTD_compressBlock_doubleFast_extDict_generic()
208 const BYTE* matchBase = matchIndex < dictLimit ? dictBase : base; in ZSTD_compressBlock_doubleFast_extDict_generic()
213 const BYTE* matchLongBase = matchLongIndex < dictLimit ? dictBase : base; in ZSTD_compressBlock_doubleFast_extDict_generic()
218 const BYTE* repBase = repIndex < dictLimit ? dictBase : base; in ZSTD_compressBlock_doubleFast_extDict_generic()
223 …if ( (((U32)((dictLimit-1) - repIndex) >= 3) /* intentional underflow */ & (repIndex > lowestIndex… in ZSTD_compressBlock_doubleFast_extDict_generic()
225 const BYTE* repMatchEnd = repIndex < dictLimit ? dictEnd : iend; in ZSTD_compressBlock_doubleFast_extDict_generic()
231 const BYTE* matchEnd = matchLongIndex < dictLimit ? dictEnd : iend; in ZSTD_compressBlock_doubleFast_extDict_generic()
232 const BYTE* lowMatchPtr = matchLongIndex < dictLimit ? dictStart : lowPrefixPtr; in ZSTD_compressBlock_doubleFast_extDict_generic()
244 const BYTE* const match3Base = matchIndex3 < dictLimit ? dictBase : base; in ZSTD_compressBlock_doubleFast_extDict_generic()
249 const BYTE* matchEnd = matchIndex3 < dictLimit ? dictEnd : iend; in ZSTD_compressBlock_doubleFast_extDict_generic()
250 const BYTE* lowMatchPtr = matchIndex3 < dictLimit ? dictStart : lowPrefixPtr; in ZSTD_compressBlock_doubleFast_extDict_generic()
256 const BYTE* matchEnd = matchIndex < dictLimit ? dictEnd : iend; in ZSTD_compressBlock_doubleFast_extDict_generic()
257 const BYTE* lowMatchPtr = matchIndex < dictLimit ? dictStart : lowPrefixPtr; in ZSTD_compressBlock_doubleFast_extDict_generic()
285 … const BYTE* repMatch2 = repIndex2 < dictLimit ? dictBase + repIndex2 : base + repIndex2; in ZSTD_compressBlock_doubleFast_extDict_generic()
286 …if ( (((U32)((dictLimit-1) - repIndex2) >= 3) & (repIndex2 > lowestIndex)) /* intentional overflo… in ZSTD_compressBlock_doubleFast_extDict_generic()
288 const BYTE* const repEnd2 = repIndex2 < dictLimit ? dictEnd : iend; in ZSTD_compressBlock_doubleFast_extDict_generic()