Searched refs:compressionLevel (Results 1 – 5 of 5) sorted by relevance
/linux/lib/lz4/ |
H A D | lz4hc_compress.c | 344 int compressionLevel, in LZ4HC_compress_generic() argument 368 if (compressionLevel > LZ4HC_MAX_CLEVEL) in LZ4HC_compress_generic() 369 compressionLevel = LZ4HC_MAX_CLEVEL; in LZ4HC_compress_generic() 370 if (compressionLevel < 1) in LZ4HC_compress_generic() 371 compressionLevel = LZ4HC_DEFAULT_CLEVEL; in LZ4HC_compress_generic() 372 maxNbAttempts = 1 << (compressionLevel - 1); in LZ4HC_compress_generic() 587 int compressionLevel) in LZ4_compress_HC_extStateHC() argument 602 srcSize, maxDstSize, compressionLevel, limitedOutput); in LZ4_compress_HC_extStateHC() 605 srcSize, maxDstSize, compressionLevel, noLimit); in LZ4_compress_HC_extStateHC() 609 int maxDstSize, int compressionLevel, void *wrkmem) in LZ4_compress_HC() argument [all …]
|
/linux/include/linux/ |
H A D | zstd_lib.h | 115 int compressionLevel); 208 int compressionLevel); 742 ZSTDLIB_API size_t ZSTD_initCStream(ZSTD_CStream* zcs, int compressionLevel); 818 int compressionLevel); 850 int compressionLevel); 1487 ZSTDLIB_STATIC_API size_t ZSTD_estimateCCtxSize(int compressionLevel); 1505 ZSTDLIB_STATIC_API size_t ZSTD_estimateCStreamSize(int compressionLevel); 1516 ZSTDLIB_STATIC_API size_t ZSTD_estimateCDictSize(size_t dictSize, int compressionLevel); 1627 …CDict* ZSTD_createCDict_byReference(const void* dictBuffer, size_t dictSize, int compressionLevel); 1632 ZSTDLIB_STATIC_API ZSTD_compressionParameters ZSTD_getCParams(int compressionLevel, unsigned long l… [all …]
|
H A D | lz4.h | 129 unsigned int compressionLevel; member 347 int compressionLevel, void *wrkmem); 361 void LZ4_resetStreamHC(LZ4_streamHC_t *streamHCPtr, int compressionLevel);
|
/linux/lib/zstd/compress/ |
H A D | zstd_compress.c | 82 int compressionLevel; /* 0 indicates that advanced API was used to select CDict params */ member 321 size_t ZSTD_CCtxParams_init(ZSTD_CCtx_params* cctxParams, int compressionLevel) { in ZSTD_CCtxParams_init() argument 324 cctxParams->compressionLevel = compressionLevel; in ZSTD_CCtxParams_init() 335 …ms_init_internal(ZSTD_CCtx_params* cctxParams, ZSTD_parameters const* params, int compressionLevel) in ZSTD_CCtxParams_init_internal() argument 344 cctxParams->compressionLevel = compressionLevel; in ZSTD_CCtxParams_init_internal() 373 cctxParams->compressionLevel = ZSTD_NO_CLEVEL; in ZSTD_CCtxParams_setZstdParams() 692 CCtxParams->compressionLevel = ZSTD_CLEVEL_DEFAULT; /* 0 == default */ in ZSTD_CCtxParams_setParameter() 694 CCtxParams->compressionLevel = value; in ZSTD_CCtxParams_setParameter() 695 if (CCtxParams->compressionLevel >= 0) return (size_t)CCtxParams->compressionLevel; in ZSTD_CCtxParams_setParameter() 887 *value = CCtxParams->compressionLevel; in ZSTD_CCtxParams_getParameter() [all …]
|
H A D | zstd_compress_internal.h | 283 int compressionLevel; member
|