Searched refs:g_displayLevel (Results 1 - 3 of 3) sorted by relevance

/external/lz4/programs/
H A Dbench.c86 #define DISPLAYLEVEL(l, ...) if (g_displayLevel>=l) { DISPLAY(__VA_ARGS__); }
87 static U32 g_displayLevel = 2; /* 0 : no display; 1: errors; 2 : + result + interaction + warnings; 3 : + progression; 4 : + information */ variable
89 #define DISPLAYUPDATE(l, ...) if (g_displayLevel>=l) { \
90 if ((clock() - g_time > refreshRate) || (g_displayLevel>=4)) \
92 if (g_displayLevel>=4) fflush(stdout); } }
121 void BMK_setNotificationLevel(unsigned level) { g_displayLevel=level; }
343 if (g_displayLevel == 1) {
398 if (g_displayLevel == 1 && !g_additionalParam)
H A Dlz4io.c102 #define DISPLAYLEVEL(l, ...) if (g_displayLevel>=l) { DISPLAY(__VA_ARGS__); }
103 static int g_displayLevel = 0; /* 0 : no display ; 1: errors ; 2 : + result + interaction + warnings ; 3 : + progression; 4 : + information */ variable
105 #define DISPLAYUPDATE(l, ...) if (g_displayLevel>=l) { \
106 if (((clock_t)(g_time - clock()) > refreshRate) || (g_displayLevel>=4)) \
108 if (g_displayLevel>=4) fflush(stderr); } }
204 g_displayLevel = level;
205 return g_displayLevel;
274 if (g_displayLevel <= 1) { /* No interaction possible */
/external/lz4/tests/
H A Dfuzzer.c79 #define DISPLAYLEVEL(l, ...) if (g_displayLevel>=l) { DISPLAY(__VA_ARGS__); }
80 static int g_displayLevel = 2; variable
97 if ((FUZ_GetClockSpan(g_time) > g_refreshRate) || (g_displayLevel>=4)) {
279 # define FUZ_DISPLAYTEST { testNb++; g_displayLevel>=4 ? printf("%2u\b\b", testNb), fflush(stdout) : 0; }
1005 if (!strcmp(argument, "--no-prompt")) { use_pause=0; seedset=1; g_displayLevel=1; continue; }
1016 g_displayLevel++;

Completed in 266 milliseconds