Lines Matching refs:cLevel

150                         const char* displayName, int cLevel,  in BMK_benchMem()  argument
234 ZSTD_parameters const zparams = ZSTD_getParams(cLevel, avgSize, dictBufferSize); in BMK_benchMem()
251 … blockTable[blockNb].srcPtr,blockTable[blockNb].srcSize, cLevel); in BMK_benchMem()
260 ZSTD_parameters const zparams = ZSTD_getParams(cLevel, avgSize, dictBufferSize); in BMK_benchMem()
297 ret = deflateInit(&def, cLevel); in BMK_benchMem()
341 ret = deflateInit(&def, cLevel); in BMK_benchMem()
547 …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()
549 …DISPLAY("-%-3i%11i (%5.3f) %6.2f MB/s %6.1f MB/s %s\n", cLevel, (int)cSize, ratio, cSpeed, dSpeed… in BMK_benchMem()
551 DISPLAYLEVEL(2, "%2i#\n", cLevel); in BMK_benchMem()
583 const char* displayName, int cLevel, int cLevelLast, in BMK_benchCLevel() argument
598 if (cLevelLast < cLevel) cLevelLast = cLevel; in BMK_benchCLevel()
601 for (l=cLevel; l <= cLevelLast; l++) { in BMK_benchCLevel()
609 for (l=cLevel; l <= cLevelLast; l++) { in BMK_benchCLevel()
617 for (l=cLevel; l <= cLevelLast; l++) { in BMK_benchCLevel()
625 for (l=cLevel; l <= cLevelLast; l++) { in BMK_benchCLevel()
637 for (l=cLevel; l <= cLevelLast; l++) { in BMK_benchCLevel()
645 for (l=cLevel; l <= cLevelLast; l++) { in BMK_benchCLevel()
653 for (l=cLevel; l <= cLevelLast; l++) { in BMK_benchCLevel()
661 for (l=cLevel; l <= cLevelLast; l++) { in BMK_benchCLevel()
708 const char* dictFileName, int cLevel, int cLevelLast) in BMK_benchFileTable() argument
747 displayName, cLevel, cLevelLast, in BMK_benchFileTable()
759 static void BMK_syntheticTest(int cLevel, int cLevelLast, double compressibility) in BMK_syntheticTest() argument
773 BMK_benchCLevel(srcBuffer, benchedSize, name, cLevel, cLevelLast, &benchedSize, 1, NULL, 0); in BMK_syntheticTest()
781 const char* dictFileName, int cLevel, int cLevelLast) in BMK_benchFiles() argument
786 BMK_syntheticTest(cLevel, cLevelLast, compressibility); in BMK_benchFiles()
788 BMK_benchFileTable(fileNamesTable, nbFiles, dictFileName, cLevel, cLevelLast); in BMK_benchFiles()
861 int cLevel = ZSTDCLI_CLEVEL_DEFAULT; in main() local
929 cLevel = readU32FromChar(&argument); in main()
1003 BMK_benchFiles(filenameTable, filenameIdx, dictFileName, cLevel, cLevelLast); in main()