Lines Matching refs:newMatch
1431 LZ4HC_match_t newMatch;
1449 newMatch = LZ4HC_FindLongerMatch(ctx, curPtr, matchlimit, MINMATCH-1, nbSearches, dict, favorDecSpeed);
1452 newMatch = LZ4HC_FindLongerMatch(ctx, curPtr, matchlimit, last_match_pos - cur, nbSearches, dict, favorDecSpeed);
1453 if (!newMatch.len) continue;
1455 if ( ((size_t)newMatch.len > sufficient_len)
1456 || (newMatch.len + cur >= LZ4_OPT_NUM) ) {
1458 best_mlen = newMatch.len;
1459 best_off = newMatch.off;
1480 { int const matchML = newMatch.len;
1483 assert(cur + newMatch.len < LZ4_OPT_NUM);
1486 int const offset = newMatch.off;