HomeSort by relevance Sort by last modified time
    Searched refs:g_displayLevel (Results 1 - 3 of 3) sorted by null

  /external/lz4/programs/
bench.c 86 #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 */
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)
lz4io.c 102 #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 */
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 */
    [all...]
  /external/lz4/tests/
fuzzer.c 79 #define DISPLAYLEVEL(l, ...) if (g_displayLevel>=l) { DISPLAY(__VA_ARGS__); }
80 static int g_displayLevel = 2;
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; }
    [all...]

Completed in 80 milliseconds