Lines Matching refs:cLevel

152                         const char* displayName, int cLevel,  in BMK_benchMem()  argument
236 ZSTD_parameters const zparams = ZSTD_getParams(cLevel, avgSize, dictBufferSize); in BMK_benchMem()
253 … blockTable[blockNb].srcPtr,blockTable[blockNb].srcSize, cLevel); in BMK_benchMem()
262 ZSTD_parameters const zparams = ZSTD_getParams(cLevel, avgSize, dictBufferSize); in BMK_benchMem()
299 ret = deflateInit(&def, cLevel); in BMK_benchMem()
343 ret = deflateInit(&def, cLevel); in BMK_benchMem()
549 …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()
551 …DISPLAY("-%-3i%11i (%5.3f) %6.2f MB/s %6.1f MB/s %s\n", cLevel, (int)cSize, ratio, cSpeed, dSpeed… in BMK_benchMem()
553 DISPLAYLEVEL(2, "%2i#\n", cLevel); in BMK_benchMem()
585 const char* displayName, int cLevel, int cLevelLast, in BMK_benchCLevel() argument
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()
712 const char* dictFileName, int cLevel, int cLevelLast) in BMK_benchFileTable() argument
751 displayName, cLevel, cLevelLast, in BMK_benchFileTable()
763 static void BMK_syntheticTest(int cLevel, int cLevelLast, double compressibility) in BMK_syntheticTest() argument
777 BMK_benchCLevel(srcBuffer, benchedSize, name, cLevel, cLevelLast, &benchedSize, 1, NULL, 0); in BMK_syntheticTest()
785 const char* dictFileName, int cLevel, int cLevelLast) in BMK_benchFiles() argument
790 BMK_syntheticTest(cLevel, cLevelLast, compressibility); in BMK_benchFiles()
792 BMK_benchFileTable(fileNamesTable, nbFiles, dictFileName, cLevel, cLevelLast); in BMK_benchFiles()
865 int cLevel = ZSTDCLI_CLEVEL_DEFAULT; in main() local
927 cLevel = (int)readU32FromChar(&argument); in main()
994 …BMK_benchFiles(filenames->fileNames, (unsigned)filenames->tableSize, dictFileName, cLevel, cLevelL… in main()