Home
last modified time | relevance | path

Searched refs:cLevel (Results 1 - 5 of 5) sorted by relevance

/third_party/lz4/programs/
H A Dbench.c153 int cLevel; member
218 LZ4_resetStreamHC_fast(pThis->LZ4_streamHC, pThis->cLevel); in LZ4_compressResetStreamHC()
227 int const acceleration = (pThis->cLevel < 0) ? -pThis->cLevel + 1 : 1; in LZ4_compressBlockNoStream()
236 return LZ4_compress_HC(src, dst, srcSize, dstSize, pThis->cLevel); in LZ4_compressBlockNoStreamHC()
244 int const acceleration = (pThis->cLevel < 0) ? -pThis->cLevel + 1 : 1; in LZ4_compressBlockStream()
278 int cLevel, in LZ4_buildCompressionParameters()
281 pParams->cLevel = cLevel; in LZ4_buildCompressionParameters()
277 LZ4_buildCompressionParameters(struct compressionParameters* pParams, int cLevel, const char* dictBuf, int dictSize) LZ4_buildCompressionParameters() argument
356 BMK_benchMem(const void* srcBuffer, size_t srcSize, const char* displayName, int cLevel, const size_t* fileSizes, U32 nbFiles, const char* dictBuf, int dictSize) BMK_benchMem() argument
629 BMK_benchCLevel(void* srcBuffer, size_t benchedSize, const char* displayName, int cLevel, int cLevelLast, const size_t* fileSizes, unsigned nbFiles, const char* dictBuf, int dictSize) BMK_benchCLevel() argument
691 BMK_benchFileTable(const char** fileNamesTable, unsigned nbFiles, int cLevel, int cLevelLast, const char* dictBuf, int dictSize) BMK_benchFileTable() argument
735 BMK_syntheticTest(int cLevel, int cLevelLast, double compressibility, const char* dictBuf, int dictSize) BMK_syntheticTest() argument
758 BMK_benchFilesSeparately(const char** fileNamesTable, unsigned nbFiles, int cLevel, int cLevelLast, const char* dictBuf, int dictSize) BMK_benchFilesSeparately() argument
774 BMK_benchFiles(const char** fileNamesTable, unsigned nbFiles, int cLevel, int cLevelLast, const char* dictFileName) BMK_benchFiles() argument
[all...]
H A Dlz4cli.c313 cLevel=1, in main() local
414 cLevel = -(int)fastLevel; in main()
422 cLevel = -1; /* default for --fast */ in main()
428 if (!strcmp(argument, "--best")) { cLevel=LZ4HC_CLEVEL_MAX; continue; } in main()
436 if (!strcmp(argument, "c0")) { cLevel=0; argument++; continue; } /* -c0 (fast compression) */ in main()
437 if (!strcmp(argument, "c1")) { cLevel=9; argument++; continue; } /* -c1 (high compression) */ in main()
438 if (!strcmp(argument, "c2")) { cLevel=12; argument++; continue; } /* -c2 (very high compression) */ in main()
439 if (!strcmp(argument, "hc")) { cLevel=12; argument++; continue; } /* -hc (very high compression) */ in main()
444 cLevel = (int)readU32FromChar(&argument); in main()
654 operationResult = BMK_benchFiles(inFileNames, ifnIdx, cLevel, cLevelLas in main()
[all...]
H A Dlz4io.c403 static int LZ4IO_LZ4_compress(const char* src, char* dst, int srcSize, int dstSize, int cLevel) in LZ4IO_LZ4_compress() argument
405 (void)cLevel; in LZ4IO_LZ4_compress()
415 typedef int (*compress_f)(const char* src, char* dst, int srcSize, int dstSize, int cLevel); in LZ4IO_compressFilename_Legacy()
/third_party/lz4/lib/
H A Dlz4hc.c806 int cLevel, in LZ4HC_compress_generic_internal()
840 if (cLevel < 1) cLevel = LZ4HC_CLEVEL_DEFAULT; /* note : convention is different from lz4frame, maybe something to review */ in LZ4HC_compress_generic_internal()
841 cLevel = MIN(LZ4HC_CLEVEL_MAX, cLevel); in LZ4HC_compress_generic_internal()
842 { cParams_t const cParam = clTable[cLevel]; in LZ4HC_compress_generic_internal()
855 cLevel == LZ4HC_CLEVEL_MAX, /* ultra mode */ in LZ4HC_compress_generic_internal()
872 int cLevel, in LZ4HC_compress_generic_noDictCtx()
877 return LZ4HC_compress_generic_internal(ctx, src, dst, srcSizePtr, dstCapacity, cLevel, limit, noDictCtx); in LZ4HC_compress_generic_noDictCtx()
887 int cLevel, in LZ4HC_compress_generic_dictCtx()
800 LZ4HC_compress_generic_internal( LZ4HC_CCtx_internal* const ctx, const char* const src, char* const dst, int* const srcSizePtr, int const dstCapacity, int cLevel, const limitedOutput_directive limit, const dictCtx_directive dict ) LZ4HC_compress_generic_internal() argument
866 LZ4HC_compress_generic_noDictCtx( LZ4HC_CCtx_internal* const ctx, const char* const src, char* const dst, int* const srcSizePtr, int const dstCapacity, int cLevel, limitedOutput_directive limit ) LZ4HC_compress_generic_noDictCtx() argument
881 LZ4HC_compress_generic_dictCtx( LZ4HC_CCtx_internal* const ctx, const char* const src, char* const dst, int* const srcSizePtr, int const dstCapacity, int cLevel, limitedOutput_directive limit ) LZ4HC_compress_generic_dictCtx() argument
907 LZ4HC_compress_generic( LZ4HC_CCtx_internal* const ctx, const char* const src, char* const dst, int* const srcSizePtr, int const dstCapacity, int cLevel, limitedOutput_directive limit ) LZ4HC_compress_generic() argument
976 LZ4_compress_HC_destSize(void* state, const char* source, char* dest, int* sourceSizePtr, int targetDestSize, int cLevel) LZ4_compress_HC_destSize() argument
1077 { int const cLevel = ctxPtr->compressionLevel; LZ4_loadDictHC() local
1205 LZ4_compressHC2(const char* src, char* dst, int srcSize, int cLevel) LZ4_compressHC2() argument
1206 LZ4_compressHC2_limitedOutput(const char* src, char* dst, int srcSize, int maxDstSize, int cLevel) LZ4_compressHC2_limitedOutput() argument
1209 LZ4_compressHC2_withStateHC(void* state, const char* src, char* dst, int srcSize, int cLevel) LZ4_compressHC2_withStateHC() argument
1210 LZ4_compressHC2_limitedOutput_withStateHC(void* state, const char* src, char* dst, int srcSize, int maxDstSize, int cLevel) LZ4_compressHC2_limitedOutput_withStateHC() argument
1245 LZ4_compressHC2_continue(void* LZ4HC_Data, const char* src, char* dst, int srcSize, int cLevel) LZ4_compressHC2_continue() argument
1250 LZ4_compressHC2_limitedOutput_continue(void* LZ4HC_Data, const char* src, char* dst, int srcSize, int dstCapacity, int cLevel) LZ4_compressHC2_limitedOutput_continue() argument
[all...]
/third_party/lz4/tests/
H A DroundTripTest.c90 typedef int (*compressFn)(const char* src, char* dst, int srcSize, int dstSize, int cLevel);

Completed in 9 milliseconds