Home
last modified time | relevance | path

Searched refs:displayLevel (Results 1 – 8 of 8) sorted by relevance

/src/sys/contrib/zstd/lib/dictBuilder/
H A Dfastcover.c63 #define LOCALDISPLAYLEVEL(displayLevel, l, ...) \ argument
64 if (displayLevel >= l) { \
75 #define LOCALDISPLAYUPDATE(displayLevel, l, ...) \ argument
76 if (displayLevel >= l) { \
77 if ((clock() - g_time > g_refreshRate) || (displayLevel >= 4)) { \
642 const int displayLevel = (int)parameters->zParams.notificationLevel; in ZDICT_optimizeTrainFromBuffer_fastCover() local
651 LOCALDISPLAYLEVEL(displayLevel, 1, "Incorrect splitPoint\n"); in ZDICT_optimizeTrainFromBuffer_fastCover()
655 LOCALDISPLAYLEVEL(displayLevel, 1, "Incorrect accel\n"); in ZDICT_optimizeTrainFromBuffer_fastCover()
659 LOCALDISPLAYLEVEL(displayLevel, 1, "Incorrect k\n"); in ZDICT_optimizeTrainFromBuffer_fastCover()
663 LOCALDISPLAYLEVEL(displayLevel, 1, "FASTCOVER must have at least one input file\n"); in ZDICT_optimizeTrainFromBuffer_fastCover()
[all …]
H A Dcover.c66 #define LOCALDISPLAYLEVEL(displayLevel, l, ...) \ argument
67 if (displayLevel >= l) { \
78 #define LOCALDISPLAYUPDATE(displayLevel, l, ...) \ argument
79 if (displayLevel >= l) { \
80 if ((clock() - g_time > g_refreshRate) || (displayLevel >= 4)) { \
647 void COVER_warnOnSmallCorpus(size_t maxDictSize, size_t nbDmers, int displayLevel) in COVER_warnOnSmallCorpus() argument
653 LOCALDISPLAYLEVEL(displayLevel, 1, in COVER_warnOnSmallCorpus()
1137 const int displayLevel = parameters->zParams.notificationLevel; in ZDICT_optimizeTrainFromBuffer_cover() local
1147 LOCALDISPLAYLEVEL(displayLevel, 1, "Incorrect parameters\n"); in ZDICT_optimizeTrainFromBuffer_cover()
1151 LOCALDISPLAYLEVEL(displayLevel, 1, "Incorrect parameters\n"); in ZDICT_optimizeTrainFromBuffer_cover()
[all …]
H A Dcover.h88 void COVER_warnOnSmallCorpus(size_t maxDictSize, size_t nbDmers, int displayLevel);
/src/sys/contrib/zstd/programs/
H A Dbenchzstd.h98 int displayLevel);
133 int displayLevel, const BMK_advancedParams_t* adv);
155 int displayLevel, const BMK_advancedParams_t* adv);
190 int displayLevel, const char* displayName);
204 int displayLevel, const char* displayName,
H A Dbenchzstd.c76 #define DISPLAYLEVEL(l, ...) if (displayLevel>=l) { DISPLAY(__VA_ARGS__); }
79 #define OUTPUTLEVEL(l, ...) if (displayLevel>=l) { OUTPUT(__VA_ARGS__); }
315 int displayLevel, const char* displayName, in BMK_benchMemAdvancedNoAlloc() argument
540 if (displayLevel == 1) { /* hidden display mode -q, used by python speed benchmark */ in BMK_benchMemAdvancedNoAlloc()
562 int displayLevel, const char* displayName, const BMK_advancedParams_t* adv) in BMK_benchMemAdvanced() argument
616 displayLevel, displayName, adv); in BMK_benchMemAdvanced()
651 int displayLevel, const char* displayName) { in BMK_benchMem() argument
659 displayLevel, displayName, &adv); in BMK_benchMem()
666 int displayLevel, const char* displayName, in BMK_benchCLevel() argument
678 if (displayLevel == 1 && !adv->additionalParam) /* --quiet mode */ in BMK_benchCLevel()
[all …]
H A Ddibio.c58 #define DISPLAYLEVEL(l, ...) if (displayLevel>=l) { DISPLAY(__VA_ARGS__); }
63 #define DISPLAYUPDATE(l, ...) { if (displayLevel>=l) { \
64 if ((UTIL_clockSpanMicro(g_displayClock) > g_refreshRate) || (displayLevel>=4)) \
66 if (displayLevel>=4) fflush(stderr); } } }
117 size_t targetChunkSize, int displayLevel ) in DiB_loadFiles() argument
266 …leStats DiB_fileStats(const char** fileNamesTable, int nbFiles, size_t chunkSize, int displayLevel) in DiB_fileStats() argument
321 int const displayLevel = params ? params->zParams.notificationLevel : in DiB_trainFromFiles() local
332 fs = DiB_fileStats(fileNamesTable, nbFiles, chunkSize, displayLevel); in DiB_trainFromFiles()
380 nbFiles, chunkSize, displayLevel); in DiB_trainFromFiles()
H A Dfileio.c95 …int displayLevel; /* 0 : no display; 1: errors; 2: + result + interaction + warnings; 3: + pr… member
103 #define DISPLAYLEVEL(l, ...) { if (g_display_prefs.displayLevel>=l) { DISPLAY(__VA_ARGS__); } }
111 … if (g_display_prefs.displayLevel>=l && (g_display_prefs.progressSetting != FIO_ps_never)) { \
112 if (READY_FOR_UPDATE() || (g_display_prefs.displayLevel>=4)) { \
115 if (g_display_prefs.displayLevel>=4) fflush(stderr); \
431 void FIO_setNotificationLevel(int level) { g_display_prefs.displayLevel=level; } in FIO_setNotificationLevel()
686 if (g_display_prefs.displayLevel <= 1) { in FIO_openDstFile()
904 if (g_display_prefs.displayLevel <= displayLevelCutoff) { in FIO_removeMultiFilesWarning()
921 …error = g_display_prefs.displayLevel > displayLevelCutoff && UTIL_requireUserConfirmation("This is… in FIO_removeMultiFilesWarning()
1432 if (g_display_prefs.displayLevel >= 3) { in FIO_compressZstdFrame()
[all …]
H A Dfileio.h133 int FIO_listMultipleFiles(unsigned numFiles, const char** filenameTable, int displayLevel);