Lines Matching refs:matchEndIdx
473 U32 matchEndIdx = curr+8+1; in ZSTD_insertBt1() local
529 if (matchLength > matchEndIdx - matchIndex) in ZSTD_insertBt1()
530 matchEndIdx = matchIndex + (U32)matchLength; in ZSTD_insertBt1()
556 assert(matchEndIdx > curr + 8); in ZSTD_insertBt1()
557 return MAX(positions, matchEndIdx - (curr + 8)); in ZSTD_insertBt1()
624 …U32 matchEndIdx = curr+8+1; /* farthest referenced position of any match => detects repetitive p… in ZSTD_insertBtAndGetAllMatches() local
747 assert(matchEndIdx > matchIndex); in ZSTD_insertBtAndGetAllMatches()
748 if (matchLength > matchEndIdx - matchIndex) in ZSTD_insertBtAndGetAllMatches()
749 matchEndIdx = matchIndex + (U32)matchLength; in ZSTD_insertBtAndGetAllMatches()
795 if (matchLength > matchEndIdx - matchIndex) in ZSTD_insertBtAndGetAllMatches()
796 matchEndIdx = matchIndex + (U32)matchLength; in ZSTD_insertBtAndGetAllMatches()
816 assert(matchEndIdx > curr+8); in ZSTD_insertBtAndGetAllMatches()
817 ms->nextToUpdate = matchEndIdx - 8; /* skip repetitive patterns */ in ZSTD_insertBtAndGetAllMatches()