Home
last modified time | relevance | path

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

/src/sys/contrib/openzfs/module/zstd/lib/compress/
H A Dzstd_compress_superblock.c678 zc->tmpWorkspace, zc->tmpWkspSize /* statically allocated in resetCCtx */), ""); in ZSTD_compressSuperBlock()
688 zc->tmpWorkspace, zc->tmpWkspSize /* statically allocated in resetCCtx */); in ZSTD_compressSuperBlock()
H A Dzstd_compress.c146 cctx->tmpWorkspace = ZSTD_cwksp_reserve_object(&cctx->workspace, TMP_WORKSPACE_SIZE); in ZSTD_initStaticCCtx()
2185 zc->tmpWorkspace = ZSTD_cwksp_reserve_object(ws, TMP_WORKSPACE_SIZE); in ZSTD_resetCCtx_internal()
2186 … RETURN_ERROR_IF(zc->tmpWorkspace == NULL, memory_allocation, "couldn't allocate tmpWorkspace"); in ZSTD_resetCCtx_internal()
3958 zc->tmpWorkspace, zc->tmpWkspSize), ""); in ZSTD_buildEntropyStatisticsAndEstimateSubBlockSize()
3965 zc->tmpWorkspace, zc->tmpWkspSize, in ZSTD_buildEntropyStatisticsAndEstimateSubBlockSize()
4131 zc->tmpWorkspace, zc->tmpWkspSize /* statically allocated in resetCCtx */, in ZSTD_compressSeqStore_singleBlock()
4421 zc->tmpWorkspace, zc->tmpWkspSize /* statically allocated in resetCCtx */, in ZSTD_compressBlock_internal()
4582 return ZSTD_splitBlock(src, blockSizeMax, splitLevel, cctx->tmpWorkspace, cctx->tmpWkspSize); in ZSTD_optimalBlockSize()
5273 ZSTD_tfp_forCCtx, cctx->tmpWorkspace) in ZSTD_compressBegin_internal()
5277 dictContentType, dtlm, ZSTD_tfp_forCCtx, cctx->tmpWorkspace); in ZSTD_compressBegin_internal()
[all …]
H A Dzstd_compress_internal.h502 void* tmpWorkspace; /* used as substitute of stack space - must be aligned for S64 type */ member