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

  /external/lz4/programs/
lz4cli.c 106 #define DISPLAYLEVEL(l, ...) if (displayLevel>=l) { DISPLAY(__VA_ARGS__); }
107 static unsigned displayLevel = 2; /* 0 : no display ; 1: errors ; 2 : + result + interaction + warnings ; 3 : + progression; 4 : + information */
124 DISPLAYLEVEL(1, "Error %i : ", error); \
125 DISPLAYLEVEL(1, __VA_ARGS__); \
126 DISPLAYLEVEL(1, "\n"); \
245 DISPLAYLEVEL(1, "Incorrect parameters\n");
246 if (displayLevel >= 1) usage();
282 if (!strcmp(programName, LZ4_CAT)) { decode=1; forceStdout=1; output_filename=stdoutmark; displayLevel=1; }
311 if (*argument=='s') { displayLevel=1; continue; } /* -s (silent mode) *
    [all...]
frametest.c 93 #define DISPLAYLEVEL(l, ...) if (displayLevel>=l) { DISPLAY(__VA_ARGS__); }
94 #define DISPLAYUPDATE(l, ...) if (displayLevel>=l) { \
95 if ((FUZ_GetMilliSpan(g_time) > refreshRate) || (displayLevel>=4)) \
97 if (displayLevel>=4) fflush(stdout); } }
107 static U32 displayLevel = 2;
219 DISPLAYLEVEL(3, "Using NULL preferences : \n");
222 DISPLAYLEVEL(3, "Compressed %i bytes into a %i bytes frame \n", (int)testSize, (int)cSize);
224 DISPLAYLEVEL(3, "Decompression test : \n");
237 DISPLAYLEVEL(3, "Single Block : \n")
    [all...]
lz4io.c 115 #define DISPLAYLEVEL(l, ...) if (displayLevel>=l) { DISPLAY(__VA_ARGS__); }
116 #define DISPLAYUPDATE(l, ...) if (displayLevel>=l) { \
117 if ((LZ4IO_GetMilliSpan(g_time) > refreshRate) || (displayLevel>=4)) \
119 if (displayLevel>=4) fflush(stdout); } }
127 static int displayLevel = 0; /* 0 : no display ; 1: errors ; 2 : + result + interaction + warnings ; 3 : + progression; 4 : + information */
146 DISPLAYLEVEL(1, "Error %i : ", error); \
147 DISPLAYLEVEL(1, __VA_ARGS__); \
148 DISPLAYLEVEL(1, "\n"); \
206 displayLevel = level
    [all...]
datagen.c 81 #define DISPLAYLEVEL(l, ...) if (displayLevel>=l) { DISPLAY(__VA_ARGS__); }
89 static unsigned displayLevel = 2;
268 displayLevel = 4;
279 DISPLAYLEVEL(4, "Data Generator %s \n", LZ4_VERSION);
280 DISPLAYLEVEL(3, "Seed = %u \n", seed);
281 if (proba!=CDG_COMPRESSIBILITY_DEFAULT) DISPLAYLEVEL(3, "Compressibility : %i%%\n", proba);
fuzzer.c 94 #define DISPLAYLEVEL(l, ...) if (g_displayLevel>=l) { DISPLAY(__VA_ARGS__); }
    [all...]

Completed in 55 milliseconds