Lines Matching refs:repIndex
558 const U32 repIndex = curr + 1 - offset_1; in ZSTD_compressBlock_fast_dictMatchState_generic() local
559 const BYTE* repMatch = (repIndex < prefixStartIndex) ? in ZSTD_compressBlock_fast_dictMatchState_generic()
560 dictBase + (repIndex - dictIndexDelta) : in ZSTD_compressBlock_fast_dictMatchState_generic()
561 base + repIndex; in ZSTD_compressBlock_fast_dictMatchState_generic()
566 if ((ZSTD_index_overlap_check(prefixStartIndex, repIndex)) in ZSTD_compressBlock_fast_dictMatchState_generic()
568 const BYTE* const repMatchEnd = repIndex < prefixStartIndex ? dictEnd : iend; in ZSTD_compressBlock_fast_dictMatchState_generic()
793 U32 const repIndex = current2 - offset_1; in ZSTD_compressBlock_fast_extDict_generic() local
794 const BYTE* const repBase = repIndex < prefixStartIndex ? dictBase : base; in ZSTD_compressBlock_fast_extDict_generic()
796 if ( ((U32)(prefixStartIndex - repIndex) >= 4) /* intentional underflow */ in ZSTD_compressBlock_fast_extDict_generic()
798 rval = MEM_read32(repBase + repIndex); in ZSTD_compressBlock_fast_extDict_generic()
810 match0 = repBase + repIndex; in ZSTD_compressBlock_fast_extDict_generic()
811 matchEnd = repIndex < prefixStartIndex ? dictEnd : iend; in ZSTD_compressBlock_fast_extDict_generic()