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

  /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...]
  /external/lz4/tests/
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");
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...]

Completed in 313 milliseconds