Lines Matching refs:match
266 const BYTE *match; in ZSTD_insertBtAndGetAllMatches() local
269 match = base + matchIndex3; in ZSTD_insertBtAndGetAllMatches()
270 if (match[bestLength] == ip[bestLength]) in ZSTD_insertBtAndGetAllMatches()
271 currMl = ZSTD_count(ip, match, iLimit); in ZSTD_insertBtAndGetAllMatches()
273 match = dictBase + matchIndex3; in ZSTD_insertBtAndGetAllMatches()
274 if (ZSTD_readMINMATCH(match, MINMATCH) == in ZSTD_insertBtAndGetAllMatches()
276 …currMl = ZSTD_count_2segments(ip + MINMATCH, match + MINMATCH, iLimit, dictEnd, prefixStart) + MIN… in ZSTD_insertBtAndGetAllMatches()
298 const BYTE *match; in ZSTD_insertBtAndGetAllMatches() local
301 match = base + matchIndex; in ZSTD_insertBtAndGetAllMatches()
302 if (match[matchLength] == ip[matchLength]) { in ZSTD_insertBtAndGetAllMatches()
303 matchLength += ZSTD_count(ip + matchLength + 1, match + matchLength + 1, iLimit) + 1; in ZSTD_insertBtAndGetAllMatches()
306 match = dictBase + matchIndex; in ZSTD_insertBtAndGetAllMatches()
307 …matchLength += ZSTD_count_2segments(ip + matchLength, match + matchLength, iLimit, dictEnd, prefix… in ZSTD_insertBtAndGetAllMatches()
309 match = base + matchIndex; /* to prepare for next usage of match[matchLength] */ in ZSTD_insertBtAndGetAllMatches()
325 if (match[matchLength] < ip[matchLength]) { in ZSTD_insertBtAndGetAllMatches()