Home
last modified time | relevance | path

Searched refs:cLevel (Results 1 – 9 of 9) sorted by relevance

/f-stack/freebsd/contrib/zstd/programs/
H A Dbenchzstd.h97 int cLevel, const ZSTD_compressionParameters* compressionParams,
131 int cLevel, const ZSTD_compressionParameters* compressionParams,
152 int cLevel, double compressibility,
187 int cLevel, const ZSTD_compressionParameters* comprParams,
201 int cLevel, const ZSTD_compressionParameters* comprParams,
H A Dbenchzstd.c167 int cLevel, in BMK_initCCtx() argument
205 int cLevel; member
310 const int cLevel, in BMK_benchMemAdvancedNoAlloc() argument
418 cctxprep.cLevel = cLevel; in BMK_benchMemAdvancedNoAlloc()
550 DISPLAYLEVEL(2, "%2i#\n", cLevel); in BMK_benchMemAdvancedNoAlloc()
657 cLevel, comprParams, in BMK_benchMem()
686 cLevel, comprParams, in BMK_benchCLevel()
700 if (cLevel > ZSTD_maxCLevel()) { in BMK_syntheticTest()
715 cLevel, compressionParams, in BMK_syntheticTest()
802 if (cLevel > ZSTD_maxCLevel()) { in BMK_benchFilesAdvanced()
[all …]
H A Dzstdcli.c724 int cLevel = init_cLevel(); in main() local
1175 if (cLevel > ZSTD_maxCLevel()) cLevel = ZSTD_maxCLevel(); in main()
1177 if (cLevelLast < cLevel) cLevelLast = cLevel; in main()
1178 if (cLevelLast > cLevel) in main()
1186 for(c = cLevel; c <= cLevelLast; c++) { in main()
1190 for(; cLevel <= cLevelLast; cLevel++) { in main()
1194 for(; cLevel <= cLevelLast; cLevel++) { in main()
1262 if (cLevel > maxCLevel) { in main()
1264 cLevel = maxCLevel; in main()
1324 if (adaptMin > cLevel) cLevel = adaptMin; in main()
[all …]
H A Dfileio.c904 int cLevel) in FIO_adjustParamsForPatchFromMode() argument
907 …ZSTD_compressionParameters const cParams = ZSTD_getCParams(cLevel, (size_t)maxSrcFileSize, (size_t… in FIO_adjustParamsForPatchFromMode()
928 int cLevel, ZSTD_compressionParameters comprParams) { in FIO_createCResources() argument
945 …prefs, &comprParams, UTIL_getFileSize(dictFileName), ssSize > 0 ? ssSize : maxSrcFileSize, cLevel); in FIO_createCResources()
964 CHECK( ZSTD_CCtx_setParameter(ress.cctx, ZSTD_c_compressionLevel, cLevel) ); in FIO_createCResources()
/f-stack/freebsd/contrib/zstd/zlibWrapper/examples/
H A Dzwrapbench.c553 DISPLAYLEVEL(2, "%2i#\n", cLevel); in BMK_benchMem()
602 if (cLevelLast < cLevel) cLevelLast = cLevel; in BMK_benchCLevel()
605 for (l=cLevel; l <= cLevelLast; l++) { in BMK_benchCLevel()
613 for (l=cLevel; l <= cLevelLast; l++) { in BMK_benchCLevel()
621 for (l=cLevel; l <= cLevelLast; l++) { in BMK_benchCLevel()
629 for (l=cLevel; l <= cLevelLast; l++) { in BMK_benchCLevel()
641 for (l=cLevel; l <= cLevelLast; l++) { in BMK_benchCLevel()
649 for (l=cLevel; l <= cLevelLast; l++) { in BMK_benchCLevel()
657 for (l=cLevel; l <= cLevelLast; l++) { in BMK_benchCLevel()
665 for (l=cLevel; l <= cLevelLast; l++) { in BMK_benchCLevel()
[all …]
/f-stack/freebsd/contrib/zstd/examples/
H A Ddictionary_compression.c18 static ZSTD_CDict* createCDict_orDie(const char* dictFileName, int cLevel) in createCDict_orDie() argument
23 ZSTD_CDict* const cdict = ZSTD_createCDict(dictBuffer, dictSize, cLevel); in createCDict_orDie()
73 int const cLevel = 3; in main() local
84 ZSTD_CDict* const dictPtr = createCDict_orDie(dictName, cLevel); in main()
H A Dmultiple_streaming_compression.c31 static resources createResources_orDie(int cLevel) in createResources_orDie() argument
45 CHECK_ZSTD( ZSTD_CCtx_setParameter(ress.cctx, ZSTD_c_compressionLevel, cLevel) ); in createResources_orDie()
106 int const cLevel = 7; in main() local
107 resources const ress = createResources_orDie(cLevel); in main()
H A Dstreaming_compression_thread_pool.c23 int cLevel; member
32 fprintf (stderr, "Starting compression of %s with level %d\n", args->fname, args->cLevel); in compressFile_orDie()
57 CHECK_ZSTD( ZSTD_CCtx_setParameter(cctx, ZSTD_c_compressionLevel, args->cLevel) ); in compressFile_orDie()
162 args[i].cLevel = level; in main()
H A Dstreaming_compression.c19 static void compressFile_orDie(const char* fname, const char* outName, int cLevel) in compressFile_orDie() argument
40 CHECK_ZSTD( ZSTD_CCtx_setParameter(cctx, ZSTD_c_compressionLevel, cLevel) ); in compressFile_orDie()