Home
last modified time | relevance | path

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

/freebsd/sys/contrib/openzfs/module/zstd/lib/
H A Dzstd.h1314 typedef struct ZSTD_CCtx_params_s ZSTD_CCtx_params; typedef
1785 ZSTDLIB_STATIC_API size_t ZSTD_estimateCCtxSize_usingCCtxParams(const ZSTD_CCtx_params* params);
1810 ZSTDLIB_STATIC_API size_t ZSTD_estimateCStreamSize_usingCCtxParams(const ZSTD_CCtx_params* params);
1920 const ZSTD_CCtx_params* cctxParams,
2385 ZSTDLIB_STATIC_API ZSTD_CCtx_params* ZSTD_createCCtxParams(void);
2386 ZSTDLIB_STATIC_API size_t ZSTD_freeCCtxParams(ZSTD_CCtx_params* params); /* accept NULL pointer */
2391 ZSTDLIB_STATIC_API size_t ZSTD_CCtxParams_reset(ZSTD_CCtx_params* params);
2397 ZSTDLIB_STATIC_API size_t ZSTD_CCtxParams_init(ZSTD_CCtx_params* cctxParams, int compressionLevel);
2403 ZSTDLIB_STATIC_API size_t ZSTD_CCtxParams_init_advanced(ZSTD_CCtx_params* cctxParams, ZSTD_paramete…
2413 ZSTDLIB_STATIC_API size_t ZSTD_CCtxParams_setParameter(ZSTD_CCtx_params* params, ZSTD_cParameter pa…
[all …]
/freebsd/sys/contrib/zstd/lib/
H A Dzstd.h1313 typedef struct ZSTD_CCtx_params_s ZSTD_CCtx_params; typedef
1784 ZSTDLIB_STATIC_API size_t ZSTD_estimateCCtxSize_usingCCtxParams(const ZSTD_CCtx_params* params);
1809 ZSTDLIB_STATIC_API size_t ZSTD_estimateCStreamSize_usingCCtxParams(const ZSTD_CCtx_params* params);
1919 const ZSTD_CCtx_params* cctxParams,
2384 ZSTDLIB_STATIC_API ZSTD_CCtx_params* ZSTD_createCCtxParams(void);
2385 ZSTDLIB_STATIC_API size_t ZSTD_freeCCtxParams(ZSTD_CCtx_params* params); /* accept NULL pointer */
2390 ZSTDLIB_STATIC_API size_t ZSTD_CCtxParams_reset(ZSTD_CCtx_params* params);
2396 ZSTDLIB_STATIC_API size_t ZSTD_CCtxParams_init(ZSTD_CCtx_params* cctxParams, int compressionLevel);
2402 ZSTDLIB_STATIC_API size_t ZSTD_CCtxParams_init_advanced(ZSTD_CCtx_params* cctxParams, ZSTD_paramete…
2412 ZSTDLIB_STATIC_API size_t ZSTD_CCtxParams_setParameter(ZSTD_CCtx_params* params, ZSTD_cParameter pa…
[all …]
/freebsd/sys/contrib/zstd/lib/compress/
H A Dzstdmt_compress.h69 ZSTD_CCtx_params params, unsigned long long pledgedSrcSize);
94 void ZSTDMT_updateCParams_whileCompressing(ZSTDMT_CCtx* mtctx, const ZSTD_CCtx_params* cctxParams);
H A Dzstd_compress_internal.h186 const ZSTD_CCtx_params* cctxParams,
476 ZSTD_CCtx_params requestedParams;
477 ZSTD_CCtx_params appliedParams;
478ZSTD_CCtx_params simpleApiParams; /* Param storage used by the simple API - not sticky. Must on…
685 MEM_STATIC int ZSTD_literalsCompressionIsDisabled(const ZSTD_CCtx_params* cctxParams) in ZSTD_literalsCompressionIsDisabled()
1547 … const ZSTD_CCtx_params* CCtxParams, U64 srcSizeHint, size_t dictSize, ZSTD_CParamMode_e mode);
1557 const ZSTD_CCtx_params* params, unsigned long long pledgedSrcSize);
1572 const ZSTD_CCtx_params* params,
1581 const ZSTD_CCtx_params* params);
1613 MEM_STATIC int ZSTD_hasExtSeqProd(const ZSTD_CCtx_params* params) { in ZSTD_hasExtSeqProd()
H A Dzstd_compress.c303 static ZSTD_CCtx_params ZSTD_makeCCtxParamsFromCParams( in ZSTD_makeCCtxParamsFromCParams()
306 ZSTD_CCtx_params cctxParams; in ZSTD_makeCCtxParamsFromCParams()
328 static ZSTD_CCtx_params* ZSTD_createCCtxParams_advanced( in ZSTD_createCCtxParams_advanced()
331 ZSTD_CCtx_params* params; in ZSTD_createCCtxParams_advanced()
333 params = (ZSTD_CCtx_params*)ZSTD_customCalloc( in ZSTD_createCCtxParams_advanced()
334 sizeof(ZSTD_CCtx_params), customMem); in ZSTD_createCCtxParams_advanced()
341 ZSTD_CCtx_params* ZSTD_createCCtxParams(void) in ZSTD_createCCtxParams()
346 size_t ZSTD_freeCCtxParams(ZSTD_CCtx_params* params) in ZSTD_freeCCtxParams()
353 size_t ZSTD_CCtxParams_reset(ZSTD_CCtx_params* params) in ZSTD_CCtxParams_reset()
358 size_t ZSTD_CCtxParams_init(ZSTD_CCtx_params* cctxParams, int compressionLevel) { in ZSTD_CCtxParams_init()
[all …]
H A Dzstdmt_compress.c475 ZSTD_CCtx_params params;
490 ZSTD_CCtx_params params, in ZSTDMT_serialState_reset()
677 ZSTD_CCtx_params params; /* set by mtctx, then read by worker => no barrier */
696ZSTD_CCtx_params jobParams = job->params; /* do not modify job->params ! copy it, modify the cop… in ZSTDMT_compressionJob()
872 ZSTD_CCtx_params params;
945 static size_t ZSTDMT_CCtxParam_setNbWorkers(ZSTD_CCtx_params* params, unsigned nbWorkers) in ZSTDMT_CCtxParam_setNbWorkers()
1096 void ZSTDMT_updateCParams_whileCompressing(ZSTDMT_CCtx* mtctx, const ZSTD_CCtx_params* cctxParams) in ZSTDMT_updateCParams_whileCompressing()
1184 static unsigned ZSTDMT_computeTargetJobLog(const ZSTD_CCtx_params* params) in ZSTDMT_computeTargetJobLog()
1226 static size_t ZSTDMT_computeOverlapSize(const ZSTD_CCtx_params* params) in ZSTDMT_computeOverlapSize()
1252 const ZSTD_CDict* cdict, ZSTD_CCtx_params params, in ZSTDMT_initCStream_internal()
H A Dzstd_compress_superblock.c167 const ZSTD_CCtx_params* cctxParams, in ZSTD_compressSubBlock_sequences()
268 const ZSTD_CCtx_params* cctxParams, in ZSTD_compressSubBlock()
483 const ZSTD_CCtx_params* cctxParams, in ZSTD_compressSubBlock_multi()
/freebsd/sys/contrib/openzfs/module/zstd/lib/compress/
H A Dzstd_compress_internal.h187 const ZSTD_CCtx_params* cctxParams,
477 ZSTD_CCtx_params requestedParams;
478 ZSTD_CCtx_params appliedParams;
479ZSTD_CCtx_params simpleApiParams; /* Param storage used by the simple API - not sticky. Must on…
686 MEM_STATIC int ZSTD_literalsCompressionIsDisabled(const ZSTD_CCtx_params* cctxParams) in ZSTD_literalsCompressionIsDisabled()
1548 … const ZSTD_CCtx_params* CCtxParams, U64 srcSizeHint, size_t dictSize, ZSTD_CParamMode_e mode);
1558 const ZSTD_CCtx_params* params, unsigned long long pledgedSrcSize);
1573 const ZSTD_CCtx_params* params,
1582 const ZSTD_CCtx_params* params);
1614 MEM_STATIC int ZSTD_hasExtSeqProd(const ZSTD_CCtx_params* params) { in ZSTD_hasExtSeqProd()
H A Dzstd_compress.c304 static ZSTD_CCtx_params ZSTD_makeCCtxParamsFromCParams( in ZSTD_makeCCtxParamsFromCParams()
307 ZSTD_CCtx_params cctxParams; in ZSTD_makeCCtxParamsFromCParams()
329 static ZSTD_CCtx_params* ZSTD_createCCtxParams_advanced( in ZSTD_createCCtxParams_advanced()
332 ZSTD_CCtx_params* params; in ZSTD_createCCtxParams_advanced()
334 params = (ZSTD_CCtx_params*)ZSTD_customCalloc( in ZSTD_createCCtxParams_advanced()
335 sizeof(ZSTD_CCtx_params), customMem); in ZSTD_createCCtxParams_advanced()
342 ZSTD_CCtx_params* ZSTD_createCCtxParams(void) in ZSTD_createCCtxParams()
347 size_t ZSTD_freeCCtxParams(ZSTD_CCtx_params* params) in ZSTD_freeCCtxParams()
354 size_t ZSTD_CCtxParams_reset(ZSTD_CCtx_params* params) in ZSTD_CCtxParams_reset()
359 size_t ZSTD_CCtxParams_init(ZSTD_CCtx_params* cctxParams, int compressionLevel) { in ZSTD_CCtxParams_init()
[all …]
H A Dzstd_compress_superblock.c168 const ZSTD_CCtx_params* cctxParams, in ZSTD_compressSubBlock_sequences()
269 const ZSTD_CCtx_params* cctxParams, in ZSTD_compressSubBlock()
484 const ZSTD_CCtx_params* cctxParams, in ZSTD_compressSubBlock_multi()
/freebsd/sys/contrib/zstd/zlibWrapper/
H A Dzstd_zlibwrapper.c210 ZSTD_CCtx_params* cctxParams = ZSTD_createCCtxParams(); in ZWRAP_initializeCStream()