Lines Matching refs:cLevel
193 const char* displayName, int cLevel, in BMK_benchMem() argument
306 ZSTD_CCtx_setParameter(ctx, ZSTD_p_compressionLevel, cLevel); in BMK_benchMem()
330 …ZSTD_parameters const params = ZSTD_getParams(cLevel, blockTable[blockNb].srcSize, dictBufferSize); in BMK_benchMem()
482 …DISPLAY("-%-3i%11i (%5.3f) %6.2f MB/s %6.1f MB/s %s (param=%d)\n", cLevel, (int)cSize, ratio, cSp… in BMK_benchMem()
484 …DISPLAY("-%-3i%11i (%5.3f) %6.2f MB/s %6.1f MB/s %s\n", cLevel, (int)cSize, ratio, cSpeed, dSpeed… in BMK_benchMem()
486 DISPLAYLEVEL(2, "%2i#\n", cLevel); in BMK_benchMem()
518 const char* displayName, int cLevel, int cLevelLast, in BMK_benchCLevel() argument
537 for (l=cLevel; l <= cLevelLast; l++) { in BMK_benchCLevel()
586 int const cLevel, int const cLevelLast, in BMK_benchFileTable() argument
629 fileNamesTable[fileNb], cLevel, cLevelLast, in BMK_benchFileTable()
639 displayName, cLevel, cLevelLast, in BMK_benchFileTable()
651 static void BMK_syntheticTest(int cLevel, int cLevelLast, double compressibility, in BMK_syntheticTest() argument
666 …BMK_benchCLevel(srcBuffer, benchedSize, name, cLevel, cLevelLast, &benchedSize, 1, NULL, 0, compre… in BMK_syntheticTest()
675 int cLevel, int cLevelLast, in BMK_benchFiles() argument
680 if (cLevel > ZSTD_maxCLevel()) cLevel = ZSTD_maxCLevel(); in BMK_benchFiles()
682 if (cLevelLast < cLevel) cLevelLast = cLevel; in BMK_benchFiles()
683 if (cLevelLast > cLevel) in BMK_benchFiles()
684 DISPLAYLEVEL(2, "Benchmarking levels from %d to %d\n", cLevel, cLevelLast); in BMK_benchFiles()
687 BMK_syntheticTest(cLevel, cLevelLast, compressibility, compressionParams); in BMK_benchFiles()
689 … BMK_benchFileTable(fileNamesTable, nbFiles, dictFileName, cLevel, cLevelLast, compressionParams); in BMK_benchFiles()