Lines Matching refs:cLevel

157     int (*compressionFunction)(const char* src, char* dst, int srcSize, int dstSize, int cLevel);
164 const char* displayName, int cLevel, in BMK_benchMem() argument
185 if (cLevel < LZ4HC_CLEVEL_MIN) cfunctionId = 0; else cfunctionId = 1; in BMK_benchMem()
260 …lockTable[blockNb].cPtr, (int)blockTable[blockNb].srcSize, (int)blockTable[blockNb].cRoom, cLevel); in BMK_benchMem()
359 …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()
361 …DISPLAY("-%-3i%11i (%5.3f) %6.2f MB/s %6.1f MB/s %s\n", cLevel, (int)cSize, ratio, cSpeed, dSpeed… in BMK_benchMem()
363 DISPLAYLEVEL(2, "%2i#\n", cLevel); in BMK_benchMem()
399 const char* displayName, int cLevel, int cLevelLast, in BMK_benchCLevel() argument
413 if (cLevelLast < cLevel) cLevelLast = cLevel; in BMK_benchCLevel()
415 for (l=cLevel; l <= cLevelLast; l++) { in BMK_benchCLevel()
459 int cLevel, int cLevelLast) in BMK_benchFileTable() argument
490 displayName, cLevel, cLevelLast, in BMK_benchFileTable()
500 static void BMK_syntheticTest(int cLevel, int cLevelLast, double compressibility) in BMK_syntheticTest() argument
514 BMK_benchCLevel(srcBuffer, benchedSize, name, cLevel, cLevelLast, &benchedSize, 1); in BMK_syntheticTest()
522 int cLevel, int cLevelLast) in BMK_benchFilesSeparately() argument
525 if (cLevel > LZ4HC_CLEVEL_MAX) cLevel = LZ4HC_CLEVEL_MAX; in BMK_benchFilesSeparately()
527 if (cLevelLast < cLevel) cLevelLast = cLevel; in BMK_benchFilesSeparately()
528 …if (cLevelLast > cLevel) DISPLAYLEVEL(2, "Benchmarking levels from %d to %d\n", cLevel, cLevelLast… in BMK_benchFilesSeparately()
531 BMK_benchFileTable(fileNamesTable+fileNb, 1, cLevel, cLevelLast); in BMK_benchFilesSeparately()
538 int cLevel, int cLevelLast) in BMK_benchFiles() argument
542 if (cLevel > LZ4HC_CLEVEL_MAX) cLevel = LZ4HC_CLEVEL_MAX; in BMK_benchFiles()
544 if (cLevelLast < cLevel) cLevelLast = cLevel; in BMK_benchFiles()
545 …if (cLevelLast > cLevel) DISPLAYLEVEL(2, "Benchmarking levels from %d to %d\n", cLevel, cLevelLast… in BMK_benchFiles()
548 BMK_syntheticTest(cLevel, cLevelLast, compressibility); in BMK_benchFiles()
551 BMK_benchFilesSeparately(fileNamesTable, nbFiles, cLevel, cLevelLast); in BMK_benchFiles()
553 BMK_benchFileTable(fileNamesTable, nbFiles, cLevel, cLevelLast); in BMK_benchFiles()