Lines Matching refs:cParams

417     const ZSTD_compressionParameters* const cParams = &ms->cParams;  in ZSTD_insertBt1()  local
419 U32 const hashLog = cParams->hashLog; in ZSTD_insertBt1()
422 U32 const btLog = cParams->chainLog - 1; in ZSTD_insertBt1()
440 U32 const windowLow = ZSTD_getLowestMatchIndex(ms, target, cParams->windowLog); in ZSTD_insertBt1()
443 U32 nbCompares = 1U << cParams->searchLog; in ZSTD_insertBt1()
552 ZSTD_updateTree_internal(ms, ip, iend, ms->cParams.minMatch, ZSTD_noDict); in ZSTD_updateTree()
566 const ZSTD_compressionParameters* const cParams = &ms->cParams; in ZSTD_insertBtAndGetAllMatches() local
567 U32 const sufficient_len = MIN(cParams->targetLength, ZSTD_OPT_NUM -1); in ZSTD_insertBtAndGetAllMatches()
570 U32 const hashLog = cParams->hashLog; in ZSTD_insertBtAndGetAllMatches()
576 U32 const btLog = cParams->chainLog - 1; in ZSTD_insertBtAndGetAllMatches()
584 U32 const windowLow = ZSTD_getLowestMatchIndex(ms, curr, cParams->windowLog); in ZSTD_insertBtAndGetAllMatches()
591 U32 nbCompares = 1U << cParams->searchLog; in ZSTD_insertBtAndGetAllMatches()
595 dictMode == ZSTD_dictMatchState ? &dms->cParams : NULL; in ZSTD_insertBtAndGetAllMatches()
807 assert(BOUNDED(3, ms->cParams.minMatch, 6) == mls); in ZSTD_btGetAllMatches_internal()
859 U32 const mls = BOUNDED(3, ms->cParams.minMatch, 6);
1052 const ZSTD_compressionParameters* const cParams = &ms->cParams; in ZSTD_compressBlock_opt_generic() local
1056 U32 const sufficient_len = MIN(cParams->targetLength, ZSTD_OPT_NUM -1); in ZSTD_compressBlock_opt_generic()
1057 U32 const minMatch = (cParams->minMatch == 3) ? 3 : 4; in ZSTD_compressBlock_opt_generic()