Searched refs:ZSTD_CCtx_params (Results 1 – 11 of 11) sorted by relevance
| /freebsd/sys/contrib/openzfs/module/zstd/lib/ |
| H A D | zstd.h | 1314 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 D | zstd.h | 1313 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 D | zstdmt_compress.h | 69 ZSTD_CCtx_params params, unsigned long long pledgedSrcSize); 94 void ZSTDMT_updateCParams_whileCompressing(ZSTDMT_CCtx* mtctx, const ZSTD_CCtx_params* cctxParams);
|
| H A D | zstd_compress_internal.h | 186 const ZSTD_CCtx_params* cctxParams, 476 ZSTD_CCtx_params requestedParams; 477 ZSTD_CCtx_params appliedParams; 478 …ZSTD_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 D | zstd_compress.c | 303 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 D | zstdmt_compress.c | 475 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 */ 696 …ZSTD_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 D | zstd_compress_superblock.c | 167 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 D | zstd_compress_internal.h | 187 const ZSTD_CCtx_params* cctxParams, 477 ZSTD_CCtx_params requestedParams; 478 ZSTD_CCtx_params appliedParams; 479 …ZSTD_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 D | zstd_compress.c | 304 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 D | zstd_compress_superblock.c | 168 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 D | zstd_zlibwrapper.c | 210 ZSTD_CCtx_params* cctxParams = ZSTD_createCCtxParams(); in ZWRAP_initializeCStream()
|