Lines Matching refs:cParams
471 DEBUGLOG(4, "LDM window size = %u KB", (1U << params.cParams.windowLog) >> 10); in ZSTDMT_serialState_reset()
472 ZSTD_ldm_adjustParameters(¶ms.ldmParams, ¶ms.cParams); in ZSTDMT_serialState_reset()
1038 …U32 const saved_wlog = mtctx->params.cParams.windowLog; /* Do not modify windowLog while compres… in ZSTDMT_updateCParams_whileCompressing()
1043 …{ ZSTD_compressionParameters cParams = ZSTD_getCParamsFromCCtxParams(cctxParams, ZSTD_CONTENTSIZ… in ZSTDMT_updateCParams_whileCompressing() local
1044 cParams.windowLog = saved_wlog; in ZSTDMT_updateCParams_whileCompressing()
1045 mtctx->params.cParams = cParams; in ZSTDMT_updateCParams_whileCompressing()
1131 jobLog = MAX(21, ZSTD_cycleLog(params->cParams.chainLog, params->cParams.strategy) + 3); in ZSTDMT_computeTargetJobLog()
1133 jobLog = MAX(20, params->cParams.windowLog + 2); in ZSTDMT_computeTargetJobLog()
1168 int const overlapRLog = 9 - ZSTDMT_overlapLog(params->overlapLog, params->cParams.strategy); in ZSTDMT_computeOverlapSize()
1169 int ovLog = (overlapRLog >= 8) ? 0 : (params->cParams.windowLog - overlapRLog); in ZSTDMT_computeOverlapSize()
1176 ovLog = MIN(params->cParams.windowLog, ZSTDMT_computeTargetJobLog(params) - 2) in ZSTDMT_computeOverlapSize()
1199 assert(!ZSTD_isError(ZSTD_checkCParams(params.cParams))); in ZSTDMT_initCStream_internal()
1223 params.cParams, mtctx->cMem); in ZSTDMT_initCStream_internal()
1256 …size_t const windowSize = mtctx->params.ldmParams.enableLdm ? (1U << mtctx->params.cParams.windowL… in ZSTDMT_initCStream_internal()