Lines Matching refs:match

463     const BYTE* match;  in ZSTD_insertBt1()  local
518 match = base + matchIndex; in ZSTD_insertBt1()
519 matchLength += ZSTD_count(ip+matchLength, match+matchLength, iend); in ZSTD_insertBt1()
521 match = dictBase + matchIndex; in ZSTD_insertBt1()
522 …matchLength += ZSTD_count_2segments(ip+matchLength, match+matchLength, iend, dictEnd, prefixStart); in ZSTD_insertBt1()
524 match = base + matchIndex; /* to prepare for next usage of match[matchLength] */ in ZSTD_insertBt1()
537 if (match[matchLength] < ip[matchLength]) { /* necessarily within buffer */ in ZSTD_insertBt1()
698 const BYTE* const match = base + matchIndex3; in ZSTD_insertBtAndGetAllMatches() local
699 mlen = ZSTD_count(ip, match, iLimit); in ZSTD_insertBtAndGetAllMatches()
701 const BYTE* const match = dictBase + matchIndex3; in ZSTD_insertBtAndGetAllMatches() local
702 mlen = ZSTD_count_2segments(ip, match, iLimit, dictEnd, prefixStart); in ZSTD_insertBtAndGetAllMatches()
727 const BYTE* match; in ZSTD_insertBtAndGetAllMatches() local
733 match = base + matchIndex; in ZSTD_insertBtAndGetAllMatches()
734 …if (matchIndex >= dictLimit) assert(memcmp(match, ip, matchLength) == 0); /* ensure early section… in ZSTD_insertBtAndGetAllMatches()
735 matchLength += ZSTD_count(ip+matchLength, match+matchLength, iLimit); in ZSTD_insertBtAndGetAllMatches()
737 match = dictBase + matchIndex; in ZSTD_insertBtAndGetAllMatches()
738 …assert(memcmp(match, ip, matchLength) == 0); /* ensure early section of match is equal as expecte… in ZSTD_insertBtAndGetAllMatches()
739 …matchLength += ZSTD_count_2segments(ip+matchLength, match+matchLength, iLimit, dictEnd, prefixStar… in ZSTD_insertBtAndGetAllMatches()
741 match = base + matchIndex; /* prepare for match[matchLength] read */ in ZSTD_insertBtAndGetAllMatches()
760 if (match[matchLength] < ip[matchLength]) { in ZSTD_insertBtAndGetAllMatches()
786 const BYTE* match = dmsBase + dictMatchIndex; in ZSTD_insertBtAndGetAllMatches() local
787 …matchLength += ZSTD_count_2segments(ip+matchLength, match+matchLength, iLimit, dmsEnd, prefixStart… in ZSTD_insertBtAndGetAllMatches()
789match = base + dictMatchIndex + dmsIndexDelta; /* to prepare for next usage of match[matchLength… in ZSTD_insertBtAndGetAllMatches()
807 if (match[matchLength] < ip[matchLength]) { in ZSTD_insertBtAndGetAllMatches()