Lines Matching refs:DISPLAY

81 #define DISPLAY(...)          fprintf(stderr, __VA_ARGS__)
82 #define DISPLAYLEVEL(l, ...) if (displayLevel>=l) { DISPLAY(__VA_ARGS__); }
85 { g_clockTime = clock(); DISPLAY(__VA_ARGS__); \
237 DISPLAY("allocation error, not enough memory to start fuzzer tests \n");
329 DISPLAY("%u bytes missing != %u bytes requested \n", (U32)missingBytes, (U32)decResult);
340 if (op>oend) { DISPLAY("decompression write overflow \n"); goto _output_error; }
828 DISPLAY("Basic tests completed \n");
839 DISPLAY("Error detected ! \n");
852 DISPLAY("locateBuffDiff: looking for error position \n");
854 DISPLAY("mode %i: non-contiguous output (%u bytes), cannot search \n",
860 DISPLAY("Error at pos %i/%i : %02X != %02X \n", (int)p, (int)size, b1[p], b2[p]);
865 # define EXIT_MSG(...) { DISPLAY("Error => "); DISPLAY(__VA_ARGS__); \
866 DISPLAY(" (seed %u, test nb %u) \n", seed, testNb); exit(1); }
1199 DISPLAY("press enter to finish \n");
1208 DISPLAY( "Usage :\n");
1209 DISPLAY( " %s [args]\n", programName);
1210 DISPLAY( "\n");
1211 DISPLAY( "Arguments :\n");
1212 DISPLAY( " -i# : Nb of tests (default:%u) \n", nbTestsDefault);
1213 DISPLAY( " -T# : Duration of tests, in seconds (default: use Nb of tests) \n");
1214 DISPLAY( " -s# : Select seed (default:prompt user)\n");
1215 DISPLAY( " -t# : Select starting test number (default:0)\n");
1216 DISPLAY( " -P# : Select compressibility in %% (default:%i%%)\n", FUZ_COMPRESSIBILITY_DEFAULT);
1217 DISPLAY( " -v : verbose\n");
1218 DISPLAY( " -h : display help and exit\n");
1342 DISPLAY("Starting lz4frame tester (%i-bits, %s)\n", (int)(sizeof(size_t)*8), LZ4_VERSION_STRING);
1349 DISPLAY("Seed = %u\n", seed);
1350 if (proba!=FUZ_COMPRESSIBILITY_DEFAULT) DISPLAY("Compressibility : %i%%\n", proba);