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

  /src/external/bsd/zstd/dist/tests/
datagencli.c 34 #define DISPLAYLEVEL(l, ...) \
35 if (displayLevel >= l) { \
38 static unsigned displayLevel = 2;
126 displayLevel = 4;
136 DISPLAYLEVEL(4, "Compressible data Generator \n");
137 DISPLAYLEVEL(3, "Seed = %u \n", (unsigned)seed);
140 DISPLAYLEVEL(3, "Compressibility : %i%%\n", probaU32);
146 DISPLAYLEVEL(3, "\n");
  /src/external/bsd/zstd/dist/programs/
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 )
173 DISPLAYLEVEL(2, "\r%79s\r", "");
174 DISPLAYLEVEL(4, "Loaded %d KB total training data, %d nb samples \n",
271 static fileStats DiB_fileStats(const char** fileNamesTable, int nbFiles, size_t chunkSize, int displayLevel)
284 DISPLAYLEVEL(3, "Sample file '%s' has zero size, skipping...\n", fileNamesTable[n])
    [all...]
fileio_types.h 26 int displayLevel; /* 0 : no display; 1: errors; 2: + result + interaction + warnings; 3: + progression; 4: + information */
  /src/external/bsd/zstd/dist/lib/dictBuilder/
fastcover.c 63 #define LOCALDISPLAYLEVEL(displayLevel, l, ...) \
64 if (displayLevel >= l) { \
67 #undef DISPLAYLEVEL
68 #define DISPLAYLEVEL(l, ...) LOCALDISPLAYLEVEL(g_displayLevel, l, __VA_ARGS__)
75 #define LOCALDISPLAYUPDATE(displayLevel, l, ...) \
76 if (displayLevel >= l) { \
77 if ((clock() - g_time > g_refreshRate) || (displayLevel >= 4)) { \
330 DISPLAYLEVEL(1, "Total samples size is too large (%u MB), maximum size is %u MB\n",
337 DISPLAYLEVEL(1, "Total number of training samples is %u and is invalid\n", nbTrainSamples);
343 DISPLAYLEVEL(1, "Total number of testing samples is %u and is invalid.\n", nbTestSamples)
    [all...]
cover.c 76 #define LOCALDISPLAYLEVEL(displayLevel, l, ...) \
77 if (displayLevel >= l) { \
80 #undef DISPLAYLEVEL
81 #define DISPLAYLEVEL(l, ...) LOCALDISPLAYLEVEL(g_displayLevel, l, __VA_ARGS__)
88 #define LOCALDISPLAYUPDATE(displayLevel, l, ...) \
89 if (displayLevel >= l) { \
90 if ((clock() - g_time > g_refreshRate) || (displayLevel >= 4)) { \
616 DISPLAYLEVEL(1, "Total samples size is too large (%u MB), maximum size is %u MB\n",
622 DISPLAYLEVEL(1, "Total number of training samples is %u and is invalid.", nbTrainSamples);
627 DISPLAYLEVEL(1, "Total number of testing samples is %u and is invalid.", nbTestSamples)
    [all...]

Completed in 19 milliseconds