Lines Matching refs:repIndex

1142 		const U32 repIndex = curr + 1 - offset_1; /* offset_1 expected <= curr +1 */  in ZSTD_compressBlock_fast_extDict_generic()  local
1143 const BYTE *repBase = repIndex < dictLimit ? dictBase : base; in ZSTD_compressBlock_fast_extDict_generic()
1144 const BYTE *repMatch = repBase + repIndex; in ZSTD_compressBlock_fast_extDict_generic()
1148 …if ((((U32)((dictLimit - 1) - repIndex) >= 3) /* intentional underflow */ & (repIndex > lowestInde… in ZSTD_compressBlock_fast_extDict_generic()
1150 const BYTE *repMatchEnd = repIndex < dictLimit ? dictEnd : iend; in ZSTD_compressBlock_fast_extDict_generic()
1429 const U32 repIndex = curr + 1 - offset_1; /* offset_1 expected <= curr +1 */ in ZSTD_compressBlock_doubleFast_extDict_generic() local
1430 const BYTE *repBase = repIndex < dictLimit ? dictBase : base; in ZSTD_compressBlock_doubleFast_extDict_generic()
1431 const BYTE *repMatch = repBase + repIndex; in ZSTD_compressBlock_doubleFast_extDict_generic()
1435 …if ((((U32)((dictLimit - 1) - repIndex) >= 3) /* intentional underflow */ & (repIndex > lowestInde… in ZSTD_compressBlock_doubleFast_extDict_generic()
1437 const BYTE *repMatchEnd = repIndex < dictLimit ? dictEnd : iend; in ZSTD_compressBlock_doubleFast_extDict_generic()
2095 const U32 repIndex = (U32)(curr + 1 - offset_1); in ZSTD_compressBlock_lazy_extDict_generic() local
2096 const BYTE *const repBase = repIndex < dictLimit ? dictBase : base; in ZSTD_compressBlock_lazy_extDict_generic()
2097 const BYTE *const repMatch = repBase + repIndex; in ZSTD_compressBlock_lazy_extDict_generic()
2098 …if (((U32)((dictLimit - 1) - repIndex) >= 3) & (repIndex > lowestIndex)) /* intentional overflow */ in ZSTD_compressBlock_lazy_extDict_generic()
2101 const BYTE *const repEnd = repIndex < dictLimit ? dictEnd : iend; in ZSTD_compressBlock_lazy_extDict_generic()
2129 const U32 repIndex = (U32)(curr - offset_1); in ZSTD_compressBlock_lazy_extDict_generic() local
2130 const BYTE *const repBase = repIndex < dictLimit ? dictBase : base; in ZSTD_compressBlock_lazy_extDict_generic()
2131 const BYTE *const repMatch = repBase + repIndex; in ZSTD_compressBlock_lazy_extDict_generic()
2132 …if (((U32)((dictLimit - 1) - repIndex) >= 3) & (repIndex > lowestIndex)) /* intentional overflow */ in ZSTD_compressBlock_lazy_extDict_generic()
2135 const BYTE *const repEnd = repIndex < dictLimit ? dictEnd : iend; in ZSTD_compressBlock_lazy_extDict_generic()
2164 const U32 repIndex = (U32)(curr - offset_1); in ZSTD_compressBlock_lazy_extDict_generic() local
2165 const BYTE *const repBase = repIndex < dictLimit ? dictBase : base; in ZSTD_compressBlock_lazy_extDict_generic()
2166 const BYTE *const repMatch = repBase + repIndex; in ZSTD_compressBlock_lazy_extDict_generic()
2167 …if (((U32)((dictLimit - 1) - repIndex) >= 3) & (repIndex > lowestIndex)) /* intentional overflow */ in ZSTD_compressBlock_lazy_extDict_generic()
2170 const BYTE *const repEnd = repIndex < dictLimit ? dictEnd : iend; in ZSTD_compressBlock_lazy_extDict_generic()
2219 const U32 repIndex = (U32)((ip - base) - offset_2); in ZSTD_compressBlock_lazy_extDict_generic() local
2220 const BYTE *const repBase = repIndex < dictLimit ? dictBase : base; in ZSTD_compressBlock_lazy_extDict_generic()
2221 const BYTE *const repMatch = repBase + repIndex; in ZSTD_compressBlock_lazy_extDict_generic()
2222 …if (((U32)((dictLimit - 1) - repIndex) >= 3) & (repIndex > lowestIndex)) /* intentional overflow */ in ZSTD_compressBlock_lazy_extDict_generic()
2225 const BYTE *const repEnd = repIndex < dictLimit ? dictEnd : iend; in ZSTD_compressBlock_lazy_extDict_generic()