Lines Matching refs:matchLength
52 U32 matchLength; member
330 state->matches[state->nbMatches].matchLength = 1; in ZSTD_eDist_insertMatch()
421 if (combinedMatch.srcIdx + combinedMatch.matchLength == match.srcIdx && in ZSTD_eDist_combineMatches()
422 combinedMatch.dictIdx + combinedMatch.matchLength == match.dictIdx) { in ZSTD_eDist_combineMatches()
423 combinedMatches[nbCombinedMatches - 1].matchLength++; in ZSTD_eDist_combineMatches()
426 if (combinedMatches[nbCombinedMatches - 1].matchLength < MINMATCH) { in ZSTD_eDist_combineMatches()
451 match.srcIdx - (matches[i - 1].srcIdx + matches[i - 1].matchLength); in ZSTD_eDist_convertMatchesToSequences()
453 U32 const matchLength = match.matchLength; in ZSTD_eDist_convertMatchesToSequences() local
456 sequences[nbSequences].matchLength = matchLength; in ZSTD_eDist_convertMatchesToSequences()
517 U32 const matchLength = match.matchLength; in ZSTD_eDist_validateMatches() local
519 assert(dictIdx + matchLength < dictSize); in ZSTD_eDist_validateMatches()
520 assert(srcIdx + matchLength < srcSize); in ZSTD_eDist_validateMatches()
521 assert(!memcmp(dict + dictIdx, src + srcIdx, matchLength)); in ZSTD_eDist_validateMatches()