Lines Matching refs:minMatch
726 CCtxParams->cParams.minMatch = value;
727 return CCtxParams->cParams.minMatch;
902 *value = CCtxParams->cParams.minMatch;
1169 BOUNDCHECK(ZSTD_c_minMatch, (int)cParams.minMatch);
1191 CLAMP(ZSTD_c_minMatch, cParams.minMatch);
1327 if (overrides->minMatch) cParams->minMatch = overrides->minMatch;
1358 U32 const hashLog3 = (forCCtx && cParams->minMatch==3) ? MIN(ZSTD_HASHLOG3_MAX, cParams->windowLog) : 0;
1400 U32 const divider = (cParams->minMatch==3) ? 3 : 4;
1583 assert(cParams1.minMatch == cParams2.minMatch);
1656 U32 const hashLog3 = ((forWho == ZSTD_resetTarget_CCtx) && cParams->minMatch==3) ? MIN(ZSTD_HASHLOG3_MAX, cParams->windowLog) : 0;
1780 U32 const divider = (params->cParams.minMatch==3) ? 3 : 4;
2734 ZSTD_ldm_skipSequences(&zc->externSeqStore, srcSize, zc->appliedParams.cParams.minMatch);
5715 if (matchLength > blockSize && firstHalfMatchLength >= cctx->appliedParams.cParams.minMatch) {
5718 if (secondHalfMatchLength < cctx->appliedParams.cParams.minMatch) {
5719 /* Move the endPosInSequence backward so that it creates match of minMatch length */
5720 endPosInSequence -= cctx->appliedParams.cParams.minMatch - secondHalfMatchLength;
5721 bytesAdjustment = cctx->appliedParams.cParams.minMatch - secondHalfMatchLength;