Lines Matching defs:longest
244 int longest,
287 assert(longest >= 1);
288 if (LZ4_read16(iLowLimit + longest - 1) == LZ4_read16(matchPtr - lookBackLength + longest - 1)) {
293 if (matchLength > longest) {
294 longest = matchLength;
311 if (matchLength > longest) {
312 longest = matchLength;
317 if (chainSwap && matchLength==longest) { /* better match => select a better chain */
319 if (matchIndex + (U32)longest <= ipIndex) {
322 int const end = longest - MINMATCH + 1;
396 if ((size_t)longest < maxML) {
400 longest = (int)maxML;
435 if (mlt > longest) {
436 longest = mlt;
446 return longest;