Lines Matching refs:cLevelLast
630 const char* displayName, int cLevel, int cLevelLast,
645 if (cLevelLast < cLevel) cLevelLast = cLevel;
647 for (l=cLevel; l <= cLevelLast; l++) {
692 int cLevel, int cLevelLast,
724 displayName, cLevel, cLevelLast,
735 static void BMK_syntheticTest(int cLevel, int cLevelLast, double compressibility,
750 BMK_benchCLevel(srcBuffer, benchedSize, name, cLevel, cLevelLast, &benchedSize, 1, dictBuf, dictSize);
759 int cLevel, int cLevelLast,
764 if (cLevelLast > LZ4HC_CLEVEL_MAX) cLevelLast = LZ4HC_CLEVEL_MAX;
765 if (cLevelLast < cLevel) cLevelLast = cLevel;
768 BMK_benchFileTable(fileNamesTable+fileNb, 1, cLevel, cLevelLast, dictBuf, dictSize);
775 int cLevel, int cLevelLast,
790 cLevelLast = cLevel;
792 if (cLevelLast > LZ4HC_CLEVEL_MAX) cLevelLast = LZ4HC_CLEVEL_MAX;
793 if (cLevelLast < cLevel) cLevelLast = cLevel;
794 if (cLevelLast > cLevel)
795 DISPLAYLEVEL(2, "Benchmarking levels from %d to %d\n", cLevel, cLevelLast);
827 BMK_syntheticTest(cLevel, cLevelLast, compressibility, dictBuf, (int)dictSize);
830 BMK_benchFilesSeparately(fileNamesTable, nbFiles, cLevel, cLevelLast, dictBuf, (int)dictSize);
832 BMK_benchFileTable(fileNamesTable, nbFiles, cLevel, cLevelLast, dictBuf, (int)dictSize);