Lines Matching refs:nbMatches

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