Lines Matching refs:g_displayLevel
76 #define DISPLAYLEVEL(l, ...) if (g_displayLevel>=l) { DISPLAY(__VA_ARGS__); }
77 static unsigned g_displayLevel = DEFAULT_DISPLAY_LEVEL; /* 0 : no display; 1: errors; 2 : + r… variable
80 #define DISPLAYUPDATE(l, ...) if (g_displayLevel>=l) { \
81 if ((clock() - g_time > refreshRate) || (g_displayLevel>=4)) \
83 if (g_displayLevel>=4) fflush(displayOut); } }
112 void BMK_setNotificationLevel(unsigned level) { g_displayLevel=level; } in BMK_setNotificationLevel()
560 if (g_displayLevel == 1) { in BMK_benchMem()
612 if (g_displayLevel == 1 && !g_additionalParam) in BMK_benchCLevel()
846 if (g_displayLevel >= 1) usage(programName); in badusage()
909 if (!strcmp(argument, "--verbose")) { g_displayLevel++; continue; } in main()
910 if (!strcmp(argument, "--quiet")) { g_displayLevel--; continue; } in main()
928 case 'v': g_displayLevel++; argument++; break; in main()
931 case 'q': g_displayLevel--; argument++; break; in main()
956 BMK_setNotificationLevel(g_displayLevel); in main()
968 BMK_setNotificationLevel(g_displayLevel); in main()
1008 BMK_setNotificationLevel(g_displayLevel); in main()