Lines Matching refs:jobParams

645 …ZSTD_CCtx_params jobParams = job->params;   /* do not modify job->params ! copy it, modify the cop…  in ZSTDMT_compressionJob()  local
658 if (jobParams.ldmParams.enableLdm && rawSeqStore.seq == NULL) in ZSTDMT_compressionJob()
664 if (job->jobID != 0) jobParams.fParams.checksumFlag = 0; in ZSTDMT_compressionJob()
666 jobParams.ldmParams.enableLdm = 0; in ZSTDMT_compressionJob()
671 …ced_internal(cctx, NULL, 0, ZSTD_dct_auto, ZSTD_dtlm_fast, job->cdict, &jobParams, job->fullFrameS… in ZSTDMT_compressionJob()
676 …{ size_t const forceWindowError = ZSTD_CCtxParams_setParameter(&jobParams, ZSTD_c_forceMaxWindow… in ZSTDMT_compressionJob()
683 &jobParams, pledgedSrcSize); in ZSTDMT_compressionJob()
1039 ZSTD_CCtx_params jobParams = *params; in ZSTDMT_initJobCCtxParams() local
1041 jobParams.forceWindow = 0; in ZSTDMT_initJobCCtxParams()
1042 jobParams.nbWorkers = 0; in ZSTDMT_initJobCCtxParams()
1043 jobParams.jobSize = 0; in ZSTDMT_initJobCCtxParams()
1044 jobParams.overlapLog = 0; in ZSTDMT_initJobCCtxParams()
1045 jobParams.rsyncable = 0; in ZSTDMT_initJobCCtxParams()
1046 memset(&jobParams.ldmParams, 0, sizeof(ldmParams_t)); in ZSTDMT_initJobCCtxParams()
1047 memset(&jobParams.customMem, 0, sizeof(ZSTD_customMem)); in ZSTDMT_initJobCCtxParams()
1048 return jobParams; in ZSTDMT_initJobCCtxParams()
1245 ZSTD_CCtx_params const jobParams = ZSTDMT_initJobCCtxParams(&params); in ZSTDMT_compress_advanced_internal() local
1254 assert(jobParams.nbWorkers == 0); in ZSTDMT_compress_advanced_internal()
1264 … ZSTD_compress_usingCDict_advanced(cctx, dst, dstCapacity, src, srcSize, cdict, jobParams.fParams); in ZSTDMT_compress_advanced_internal()
1265 … return ZSTD_compress_advanced_internal(cctx, dst, dstCapacity, src, srcSize, NULL, 0, &jobParams); in ZSTDMT_compress_advanced_internal()
1291 mtctx->jobs[u].params = jobParams; in ZSTDMT_compress_advanced_internal()