| /freebsd/sys/contrib/zstd/lib/dictBuilder/ |
| H A D | fastcover.c | 63 #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 D | cover.c | 76 #define LOCALDISPLAYLEVEL(displayLevel, l, ...) \ argument 77 if (displayLevel >= l) { \ 88 #define LOCALDISPLAYUPDATE(displayLevel, l, ...) \ argument 89 if (displayLevel >= l) { \ 90 if ((clock() - g_time > g_refreshRate) || (displayLevel >= 4)) { \ 691 void COVER_warnOnSmallCorpus(size_t maxDictSize, size_t nbDmers, int displayLevel) argument 697 LOCALDISPLAYLEVEL(displayLevel, 1, 1186 const int displayLevel = parameters->zParams.notificationLevel; local 1196 LOCALDISPLAYLEVEL(displayLevel, 1, "Incorrect parameters\n"); 1200 LOCALDISPLAYLEVEL(displayLevel, 1, "Incorrect parameters\n"); [all …]
|
| H A D | cover.h | 82 void COVER_warnOnSmallCorpus(size_t maxDictSize, size_t nbDmers, int displayLevel);
|
| /freebsd/sys/contrib/zstd/programs/ |
| H A D | benchzstd.h | 85 int displayLevel); 122 int displayLevel, const BMK_advancedParams_t* adv); 137 int displayLevel, const BMK_advancedParams_t* adv); 172 int displayLevel, const char* displayName); 186 int displayLevel, const char* displayName,
|
| H A D | fileio_common.h | 35 #define DISPLAYLEVEL(l, ...) { if (g_display_prefs.displayLevel>=l) { DISPLAY(__VA_ARGS__); } } 40 …_UPDATE() (UTIL_clockSpanMicro(g_displayClock) > REFRESH_RATE || g_display_prefs.displayLevel >= 4) 43 … if (g_display_prefs.displayLevel>=l && (g_display_prefs.progressSetting != FIO_ps_never)) { \ 47 if (g_display_prefs.displayLevel>=4) fflush(stderr); \ 51 (g_display_prefs.displayLevel >= 2 || g_display_prefs.progressSetting == FIO_ps_always)
|
| H A D | dibio.c | 59 #define DISPLAYLEVEL(l, ...) if (displayLevel>=l) { DISPLAY(__VA_ARGS__); } 64 #define DISPLAYUPDATE(l, ...) { if (displayLevel>=l) { \ 65 if ((UTIL_clockSpanMicro(g_displayClock) > g_refreshRate) || (displayLevel>=4)) \ 67 if (displayLevel>=4) fflush(stderr); } } } 118 size_t targetChunkSize, int displayLevel ) in DiB_loadFiles() argument 271 …leStats DiB_fileStats(const char** fileNamesTable, int nbFiles, size_t chunkSize, int displayLevel) in DiB_fileStats() argument 325 int const displayLevel = params ? params->zParams.notificationLevel : in DiB_trainFromFiles() local 336 fs = DiB_fileStats(fileNamesTable, nbFiles, chunkSize, displayLevel); in DiB_trainFromFiles() 384 nbFiles, chunkSize, displayLevel); in DiB_trainFromFiles()
|
| H A D | benchzstd.c | 82 if (displayLevel >= l) { \ 93 if (displayLevel >= l) { \ 434 int displayLevel, in BMK_benchMemAdvancedNoAlloc() 747 if (displayLevel in BMK_benchMemAdvancedNoAlloc() 790 int displayLevel, in BMK_benchMemAdvanced() argument 868 displayLevel, in BMK_benchMemAdvanced() 911 int displayLevel, in BMK_benchMem() argument 926 displayLevel, in BMK_benchMem() 941 int displayLevel, in BMK_benchCLevels() argument 966 if (displayLevel == 1 && !adv->additionalParam) /* --quiet mode */ in BMK_benchCLevels() [all …]
|
| H A D | fileio_types.h | 26 …int displayLevel; /* 0 : no display; 1: errors; 2: + result + interaction + warnings; 3: + pr… member
|
| H A D | fileio.c | 259 return fCtx->nbFilesTotal <= 1 || g_display_prefs.displayLevel >= 3; in FIO_shouldDisplayFileSummary() 344 void FIO_setNotificationLevel(int level) { g_display_prefs.displayLevel=level; } in FIO_setNotificationLevel() 625 if (g_display_prefs.displayLevel <= 1) { in FIO_openDstFile() 1034 if (g_display_prefs.displayLevel <= displayLevelCutoff) { in FIO_multiFilesConcatWarning() 1684 if (g_display_prefs.displayLevel >= 3) { in FIO_compressZstdFrame() 2115 assert(g_display_prefs.displayLevel >= 4); in FIO_displayCompressionParameters() 2447 if ((srcFileLength>20) && (g_display_prefs.displayLevel<3)) in FIO_decompressZstdFrame() 3307 displayInfo(const char* inFileName, const fileInfo_t* info, int displayLevel) in displayInfo() argument 3314 if (displayLevel <= 2) { in displayInfo() 3376 FIO_listFile(fileInfo_t* total, const char* inFileName, int displayLevel) in FIO_listFile() argument [all …]
|
| H A D | fileio.h | 126 int FIO_listMultipleFiles(unsigned numFiles, const char** filenameTable, int displayLevel);
|