Home | History | Annotate | Download | only in programs

Lines Matching defs:DISPLAYLEVEL

36 #define DISPLAYLEVEL(l, ...) { if (g_display_prefs.displayLevel>=l) { DISPLAY(__VA_ARGS__); } }
41 #define READY_FOR_UPDATE() (UTIL_clockSpanMicro(g_displayClock) > REFRESH_RATE || g_display_prefs.displayLevel >= 4)
44 if (g_display_prefs.displayLevel>=l && (g_display_prefs.progressSetting != FIO_ps_never)) { \
48 if (g_display_prefs.displayLevel>=4) fflush(stderr); \
52 (g_display_prefs.displayLevel >= 2 || g_display_prefs.progressSetting == FIO_ps_always)
55 #define DISPLAY_PROGRESS(...) { if (SHOULD_DISPLAY_PROGRESS()) { DISPLAYLEVEL(1, __VA_ARGS__); }}
57 #define DISPLAY_SUMMARY(...) { if (SHOULD_DISPLAY_SUMMARY()) { DISPLAYLEVEL(1, __VA_ARGS__); } }
65 DISPLAYLEVEL(1, "zstd: "); \
66 DISPLAYLEVEL(5, "Error defined at %s, line %i : \n", __FILE__, __LINE__); \
67 DISPLAYLEVEL(1, "error %i : ", error); \
68 DISPLAYLEVEL(1, __VA_ARGS__); \
69 DISPLAYLEVEL(1, " \n"); \
76 DISPLAYLEVEL(5, "%s \n", #f); \