HomeSort by: relevance | last modified time | path
    Searched defs:g_displayLevel (Results 1 - 9 of 9) sorted by relevancy

  /src/external/bsd/zstd/dist/lib/dictBuilder/
fastcover.c 54 static int g_displayLevel = 0;
68 #define DISPLAYLEVEL(l, ...) LOCALDISPLAYLEVEL(g_displayLevel, l, __VA_ARGS__)
83 #define DISPLAYUPDATE(l, ...) LOCALDISPLAYUPDATE(g_displayLevel, l, __VA_ARGS__)
559 g_displayLevel = (int)parameters.zParams.notificationLevel;
594 COVER_warnOnSmallCorpus(dictBufferCapacity, ctx.nbDmers, g_displayLevel);
683 g_displayLevel = displayLevel == 0 ? 0 : displayLevel - 1;
726 data->parameters.zParams.notificationLevel = (unsigned)g_displayLevel;
cover.c 58 static int g_displayLevel = 0;
72 #define DISPLAYLEVEL(l, ...) LOCALDISPLAYLEVEL(g_displayLevel, l, __VA_ARGS__)
87 #define DISPLAYUPDATE(l, ...) LOCALDISPLAYUPDATE(g_displayLevel, l, __VA_ARGS__)
748 g_displayLevel = (int)parameters.zParams.notificationLevel;
771 COVER_warnOnSmallCorpus(dictBufferCapacity, ctx.suffixSize, g_displayLevel);
1180 g_displayLevel = displayLevel == 0 ? 0 : displayLevel - 1;
1223 data->parameters.zParams.notificationLevel = g_displayLevel;
  /src/external/bsd/zstd/dist/zlibWrapper/examples/
zwrapbench.c 76 #define DISPLAYLEVEL(l, ...) if (g_displayLevel>=l) { DISPLAY(__VA_ARGS__); }
77 static unsigned g_displayLevel = DEFAULT_DISPLAY_LEVEL; /* 0 : no display; 1: errors; 2 : + result + interaction + warnings; 3 : + progression; 4 : + information */
80 #define DISPLAYUPDATE(l, ...) if (g_displayLevel>=l) { \
81 if ((clock() - g_time > refreshRate) || (g_displayLevel>=4)) \
83 if (g_displayLevel>=4) fflush(displayOut); } }
112 static void BMK_setNotificationLevel(unsigned level) { g_displayLevel=level; }
562 if (g_displayLevel == 1) {
614 if (g_displayLevel == 1 && !g_additionalParam)
848 if (g_displayLevel >= 1) usage(programName);
911 if (!strcmp(argument, "--verbose")) { g_displayLevel++; continue;
    [all...]
  /src/external/bsd/zstd/dist/contrib/largeNbDicts/
largeNbDicts.c 63 #define DISPLAYLEVEL(l, ...) { if (g_displayLevel>=l) { DISPLAY(__VA_ARGS__); } }
64 static int g_displayLevel = DISPLAY_LEVEL_DEFAULT; /* 0 : no display, 1: errors, 2 : + result + interaction + warnings, 3 : + progression, 4 : + information */
  /src/external/bsd/zstd/dist/programs/
zstdcli.c 106 #define DISPLAYLEVEL(l, ...) { if (g_displayLevel>=l) { DISPLAY(__VA_ARGS__); } }
107 static int g_displayLevel = DISPLAY_LEVEL_DEFAULT; /* 0 : no display, 1: errors, 2 : + result + interaction + warnings, 3 : + progression, 4 : + information */
322 if (g_displayLevel >= 2) usage(stderr, programName);
647 if (g_displayLevel < DISPLAY_LEVEL_DEFAULT) {
653 if (g_displayLevel >= 3) {
669 if (g_displayLevel >= 4) {
715 assert(g_displayLevel >= 4);
914 if (exeNameMatch(programName, ZSTD_CAT)) { operation=zom_decompress; FIO_overwriteMode(prefs); forceStdout=1; followLinks=1; FIO_setPassThroughFlag(prefs, 1); outFileName=stdoutmark; g_displayLevel=1; } /* supports multiple formats */
915 if (exeNameMatch(programName, ZSTD_ZCAT)) { operation=zom_decompress; FIO_overwriteMode(prefs); forceStdout=1; followLinks=1; FIO_setPassThroughFlag(prefs, 1); outFileName=stdoutmark; g_displayLevel=1; } /* behave like zcat, also supports multiple formats */
921 if (exeNameMatch(programName, ZSTD_GZCAT)) { operation=zom_decompress; FIO_overwriteMode(prefs); forceStdout=1; followLinks=1; FIO_setPassThroughFlag(prefs, 1); outFileName=stdoutmark; g_displayLevel=1; } /* behave like gzcat, also supports multiple formats *
    [all...]
  /src/external/bsd/zstd/dist/tests/
decodecorpus.c 42 #define DISPLAYLEVEL(l, ...) if (g_displayLevel>=l) { DISPLAY(__VA_ARGS__); }
43 static U32 g_displayLevel = 2;
48 (g_displayLevel >= 4)) { \
51 if (g_displayLevel >= 4) fflush(stderr); \
1844 g_displayLevel++;
zstreamtest.c 63 #define DISPLAYLEVEL(l, ...) if (g_displayLevel>=l) { \
65 if (g_displayLevel>=4) fflush(stderr); }
66 static U32 g_displayLevel = 2;
71 #define DISPLAYUPDATE(l, ...) if (g_displayLevel>=l) { \
72 if ((UTIL_clockSpanMicro(g_displayClock) > g_refreshRate) || (g_displayLevel>=4)) \
74 if (g_displayLevel>=4) fflush(stderr); } }
3292 g_displayLevel++;
3297 g_displayLevel--;
fuzzer.c 63 #define DISPLAYLEVEL(l, ...) if (g_displayLevel>=l) { DISPLAY(__VA_ARGS__); }
64 static U32 g_displayLevel = 2;
70 if (g_displayLevel>=l) { \
71 if ((UTIL_clockSpanMicro(g_displayClock) > g_refreshRate) || (g_displayLevel>=4)) \
73 if (g_displayLevel>=4) fflush(stderr); } \
199 if (g_displayLevel<3) return 0;
4848 g_displayLevel++;
4853 g_displayLevel--;
4911 g_displayLevel = MAX(3, g_displayLevel);
    [all...]
paramgrill.c 56 #define DISPLAYLEVEL(n, ...) if(g_displayLevel >= n) { fprintf(stderr, __VA_ARGS__); }
254 static int g_displayLevel = 3;
906 || g_displayLevel >= 4) {
912 if(g_displayLevel >= 2) {
917 if(g_displayLevel >= 1) { BMK_paramValues_into_commandLine(f, params); }
923 if(g_optmode && g_optimizer && (DEBUG || g_displayLevel == 3)) {
2545 if (g_displayLevel >= 0) {
2902 while (argument[0] == 'q') { argument++; g_displayLevel--; }
2906 while (argument[0] == 'v') { argument++; g_displayLevel++; }

Completed in 88 milliseconds