Home
last modified time | relevance | path

Searched refs:targetSectionSize (Results 1 – 1 of 1) sorted by relevance

/freebsd/sys/contrib/zstd/lib/compress/
H A Dzstdmt_compress.c841 size_t targetSectionSize; member
1262 mtctx->targetSectionSize = params.jobSize; in ZSTDMT_initCStream_internal()
1263 if (mtctx->targetSectionSize == 0) { in ZSTDMT_initCStream_internal()
1264 mtctx->targetSectionSize = 1ULL << ZSTDMT_computeTargetJobLog(&params); in ZSTDMT_initCStream_internal()
1266 assert(mtctx->targetSectionSize <= (size_t)ZSTDMT_JOBSIZE_MAX); in ZSTDMT_initCStream_internal()
1270 U32 const jobSizeKB = (U32)(mtctx->targetSectionSize >> 10); in ZSTDMT_initCStream_internal()
1280 …if (mtctx->targetSectionSize < mtctx->targetPrefixSize) mtctx->targetSectionSize = mtctx->targetPr… in ZSTDMT_initCStream_internal()
1281 …DEBUGLOG(4, "Job Size : %u KB (note : set to %u)", (U32)(mtctx->targetSectionSize>>10), (U32)param… in ZSTDMT_initCStream_internal()
1282 DEBUGLOG(4, "inBuff Size : %u KB", (U32)(mtctx->targetSectionSize>>10)); in ZSTDMT_initCStream_internal()
1283 ZSTDMT_setBufferSize(mtctx->bufPool, ZSTD_compressBound(mtctx->targetSectionSize)); in ZSTDMT_initCStream_internal()
[all …]