Lines Matching refs:DISPLAY
65 #define DISPLAY(...) fprintf(stderr, __VA_ARGS__) macro
66 #define DISPLAYLEVEL(l, ...) if (displayLevel>=l) { DISPLAY(__VA_ARGS__); }
74 #define DEBUGOUTPUT(...) do { if (DEBUG) DISPLAY(__VA_ARGS__); } while (0)
213 DISPLAY( "Usage :\n"); in FUZ_usage()
214 DISPLAY( " %s [args] filename\n", programName); in FUZ_usage()
215 DISPLAY( "\n"); in FUZ_usage()
216 DISPLAY( "Arguments :\n"); in FUZ_usage()
217 DISPLAY( " -b# : expected blocksizeID [4-7] (required)\n"); in FUZ_usage()
218 DISPLAY( " -B# : expected blocksize [32-4194304] (required)\n"); in FUZ_usage()
219 DISPLAY( " -v : verbose\n"); in FUZ_usage()
220 DISPLAY( " -h : display help and exit\n"); in FUZ_usage()
296 … DISPLAY("Starting frame checker (%i-bits, %s)\n", (int)(sizeof(size_t)*8), LZ4_VERSION_STRING); in main()