Home
last modified time | relevance | path

Searched refs:timer_e (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_stats.h306 enum timer_e { KMP_FOREACH_TIMER(ENUMERATE, TIMER_) TIMER_LAST }; enum
464 static const char *name(timer_e e) { return timerInfo[e].name; } in name()
465 static bool noTotal(timer_e e) { in noTotal()
468 static bool masterOnly(timer_e e) { in masterOnly()
471 static bool workerOnly(timer_e e) { in workerOnly()
474 static bool noUnits(timer_e e) { in noUnits()
477 static bool logEvent(timer_e e) { in logEvent()
492 timer_e timerEnumValue;
498 explicitTimer(timeStat *s, timer_e te) in explicitTimer()
514 timer_e get_type() const { return timerEnumValue; } in get_type()
[all …]
H A Dkmp_stats.cpp587 if (timeStat::logEvent((timer_e)i)) { in setupEventColors()
600 for (timer_e s = timer_e(0); s < TIMER_LAST; s = timer_e(s + 1)) { in printTimerStats()
608 for (timer_e s = timer_e(0); s < TIMER_LAST; s = timer_e(s + 1)) { in printTimerStats()
622 char tag = timeStat::noUnits(timer_e(s)) ? ' ' : 'T'; in printTimerStats()
624 fprintf(statsOut, "%s\n", timeStat::name(timer_e(s))); in printTimerStats()
741 if (timeStat::logEvent((timer_e)i)) { in printPloticusFile()
742 rgb_color c = getEventColor((timer_e)i); in printPloticusFile()
748 timeStat::name((timer_e)i), c.r, c.g, c.b); in printPloticusFile()
837 for (timer_e s = timer_e(0); s < TIMER_LAST; s = timer_e(s + 1)) { in outputStats()