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

  /external/lz4/tests/
frametest.c 81 #define DISPLAYLEVEL(l, ...) if (displayLevel>=l) { DISPLAY(__VA_ARGS__); }
82 #define DISPLAYUPDATE(l, ...) if (displayLevel>=l) { \
83 if ((FUZ_GetClockSpan(g_clockTime) > refreshRate) || (displayLevel>=4)) \
85 if (displayLevel>=4) fflush(stdout); } }
94 static U32 displayLevel = 2;
190 DISPLAYLEVEL(3, "LZ4F_compressBound(0) = ");
193 DISPLAYLEVEL(3, " %u \n", (U32)cBound);
198 DISPLAYLEVEL(3, "LZ4F_compressFrame, compress null content : \n");
201 DISPLAYLEVEL(3, "Compressed null content into a %i bytes frame \n", (int)cSize)
    [all...]
datagencli.c 52 #define DISPLAYLEVEL(l, ...) if (displayLevel>=l) { DISPLAY(__VA_ARGS__); }
53 static unsigned displayLevel = 2;
153 displayLevel = 4;
164 DISPLAYLEVEL(4, "Data Generator %s \n", LZ4_VERSION_STRING);
165 DISPLAYLEVEL(3, "Seed = %u \n", seed);
166 if (proba!=COMPRESSIBILITY_DEFAULT) DISPLAYLEVEL(3, "Compressibility : %i%%\n", (U32)(proba*100));
169 DISPLAYLEVEL(1, "\n");
fuzzer.c 79 #define DISPLAYLEVEL(l, ...) if (g_displayLevel>=l) { DISPLAY(__VA_ARGS__); }
329 DISPLAYLEVEL(5, "destSize : %7i/%7i; content%7i/%7i ", ret, targetSize, srcSize, blockSize);
345 DISPLAYLEVEL(5, " OK \n");
348 DISPLAYLEVEL(5, " \n");
    [all...]
  /external/lz4/programs/
lz4cli.c 77 #define DISPLAYLEVEL(l, ...) if (displayLevel>=l) { DISPLAY(__VA_ARGS__); }
78 static unsigned displayLevel = 2; /* 0 : no display ; 1: errors only ; 2 : downgradable normal ; 3 : non-downgradable normal; 4 : + information */
89 DISPLAYLEVEL(1, "Error %i : ", error); \
90 DISPLAYLEVEL(1, __VA_ARGS__); \
91 DISPLAYLEVEL(1, "\n"); \
231 DISPLAYLEVEL(1, "Incorrect parameters\n");
232 if (displayLevel >= 1) usage(exeName);
306 displayLevel=1;
343 if (!strcmp(argument, "--verbose")) { displayLevel++; continue;
    [all...]
lz4io.c 102 #define DISPLAYLEVEL(l, ...) if (g_displayLevel>=l) { DISPLAY(__VA_ARGS__); }
136 DISPLAYLEVEL(1, "Error %i : ", error); \
137 DISPLAYLEVEL(1, __VA_ARGS__); \
138 DISPLAYLEVEL(1, " \n"); \
243 DISPLAYLEVEL(4,"Using stdin for input\n");
248 if ( f==NULL ) DISPLAYLEVEL(1, "%s: %s \n", srcFileName, strerror(errno));
262 DISPLAYLEVEL(4,"Using stdout for output\n");
267 DISPLAYLEVEL(4, "Sparse File Support is automatically disabled on stdout ; try --sparse \n");
287 if (f==NULL) DISPLAYLEVEL(1, "%s: %s\n", dstFileName, strerror(errno));
377 DISPLAYLEVEL(2, "\r%79s\r", ""); /* blank line *
    [all...]
bench.c 86 #define DISPLAYLEVEL(l, ...) if (g_displayLevel>=l) { DISPLAY(__VA_ARGS__); }
107 DISPLAYLEVEL(1, "Error %i : ", error); \
108 DISPLAYLEVEL(1, __VA_ARGS__); \
109 DISPLAYLEVEL(1, "\n"); \
128 DISPLAYLEVEL(3, "- test >= %u seconds per compression / decompression -\n", g_nbSeconds);
233 DISPLAYLEVEL(2, "\r%79s\r", "");
240 DISPLAYLEVEL(2, "\rcooling down ... \r");
246 DISPLAYLEVEL(2, "%2s-%-17.17s :%10u ->\r", marks[markNb], displayName, (U32)srcSize);
275 DISPLAYLEVEL(2, "%2s-%-17.17s :%10u ->%10u (%5.3f),%6.1f MB/s\r",
311 DISPLAYLEVEL(2, "%2s-%-17.17s :%10u ->%10u (%5.3f),%6.1f MB/s ,%6.1f MB/s\r"
    [all...]

Completed in 165 milliseconds