Searched refs:displayLevel (Results 1 - 5 of 5) sorted by relevance

/freebsd-12-stable/sys/contrib/zstd/tests/
H A Ddatagencli.c36 #define DISPLAYLEVEL(l, ...) if (displayLevel>=l) { DISPLAY(__VA_ARGS__); }
37 static unsigned displayLevel = 2; variable
113 displayLevel = 4;
/freebsd-12-stable/sys/contrib/zstd/programs/
H A Ddibio.c55 #define DISPLAYLEVEL(l, ...) if (displayLevel>=l) { DISPLAY(__VA_ARGS__); }
60 #define DISPLAYUPDATE(l, ...) { if (displayLevel>=l) { \
61 if ((UTIL_clockSpanMicro(g_displayClock) > g_refreshRate) || (displayLevel>=4)) \
63 if (displayLevel>=4) fflush(stderr); } } }
108 unsigned displayLevel)
238 static fileStats DiB_fileStats(const char** fileNamesTable, unsigned nbFiles, size_t chunkSize, unsigned displayLevel) argument
275 unsigned const displayLevel = params ? params->zParams.notificationLevel : local
279 fileStats const fs = DiB_fileStats(fileNamesTable, nbFiles, chunkSize, displayLevel);
313 nbFiles = DiB_loadFiles(srcBuffer, &loadedSize, sampleSizes, fs.nbSamples, fileNamesTable, nbFiles, chunkSize, displayLevel);
105 DiB_loadFiles(void* buffer, size_t* bufferSizePtr, size_t* sampleSizes, unsigned sstSize, const char** fileNamesTable, unsigned nbFiles, size_t targetChunkSize, unsigned displayLevel) argument
H A Dfileio.h79 int FIO_listMultipleFiles(unsigned numFiles, const char** filenameTable, int displayLevel);
H A Dfileio.c1932 static void displayInfo(const char* inFileName, const fileInfo_t* info, int displayLevel){ argument
1940 if (displayLevel <= 2) {
1990 static int FIO_listFile(fileInfo_t* total, const char* inFileName, int displayLevel){ argument
2000 if (displayLevel > 2) DISPLAYOUT("\n");
2005 if (displayLevel > 2) DISPLAYOUT("\n");
2008 displayInfo(inFileName, &info, displayLevel);
2014 int FIO_listMultipleFiles(unsigned numFiles, const char** filenameTable, int displayLevel){ argument
2019 if (displayLevel <= 2) {
2028 error |= FIO_listFile(&total, filenameTable[u], displayLevel);
2030 if (numFiles > 1 && displayLevel <
[all...]
/freebsd-12-stable/sys/contrib/zstd/lib/dictBuilder/
H A Dcover.c52 #define LOCALDISPLAYLEVEL(displayLevel, l, ...) \
53 if (displayLevel >= l) { \
58 #define LOCALDISPLAYUPDATE(displayLevel, l, ...) \
59 if (displayLevel >= l) { \
60 if ((clock() - g_time > refreshRate) || (displayLevel >= 4)) { \
946 const int displayLevel = parameters->zParams.notificationLevel; local
955 LOCALDISPLAYLEVEL(displayLevel, 1, "Incorrect parameters\n");
976 g_displayLevel = displayLevel == 0 ? 0 : displayLevel - 1;
978 LOCALDISPLAYLEVEL(displayLevel,
[all...]

Completed in 239 milliseconds