Lines Matching defs:nbMatches
959 static void ZSTD_optLdm_maybeAddMatch(ZSTD_match_t* matches, U32* nbMatches,
973 if (*nbMatches == 0 || ((candidateMatchLength > matches[*nbMatches-1].len) && *nbMatches < ZSTD_OPT_NUM)) {
977 matches[*nbMatches].len = candidateMatchLength;
978 matches[*nbMatches].off = candidateOffCode;
979 (*nbMatches)++;
988 ZSTD_match_t* matches, U32* nbMatches,
1006 ZSTD_optLdm_maybeAddMatch(matches, nbMatches, optLdm, currPosInBlock);
1083 U32 nbMatches = getAllMatches(matches, ms, &nextToUpdate3, ip, iend, rep, ll0, minMatch);
1084 ZSTD_optLdm_processMatchCandidate(&optLdm, matches, &nbMatches,
1086 if (!nbMatches) { ip++; continue; }
1100 { U32 const maxML = matches[nbMatches-1].len;
1101 U32 const maxOffcode = matches[nbMatches-1].off;
1103 nbMatches, maxML, maxOffcode, (U32)(ip-prefixStart));
1124 for (matchNb = 0; matchNb < nbMatches; matchNb++) {
1200 U32 nbMatches = getAllMatches(matches, ms, &nextToUpdate3, inr, iend, opt[cur].rep, ll0, minMatch);
1203 ZSTD_optLdm_processMatchCandidate(&optLdm, matches, &nbMatches,
1206 if (!nbMatches) {
1211 { U32 const maxML = matches[nbMatches-1].len;
1213 inr-istart, cur, nbMatches, maxML);
1218 lastSequence.off = matches[nbMatches-1].off;
1227 for (matchNb = 0; matchNb < nbMatches; matchNb++) {