Home
last modified time | relevance | path

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

/external/llvm-project/openmp/runtime/src/
Dkmp_stats.h296 enum timer_e { KMP_FOREACH_TIMER(ENUMERATE, TIMER_) TIMER_LAST }; enum
454 static const char *name(timer_e e) { return timerInfo[e].name; } in name()
455 static bool noTotal(timer_e e) { in noTotal()
458 static bool masterOnly(timer_e e) { in masterOnly()
461 static bool workerOnly(timer_e e) { in workerOnly()
464 static bool noUnits(timer_e e) { in noUnits()
467 static bool logEvent(timer_e e) { in logEvent()
482 timer_e timerEnumValue;
488 explicitTimer(timeStat *s, timer_e te) in explicitTimer()
504 timer_e get_type() const { return timerEnumValue; } in get_type()
[all …]
Dkmp_stats.cpp584 if (timeStat::logEvent((timer_e)i)) { in setupEventColors()
597 for (timer_e s = timer_e(0); s < TIMER_LAST; s = timer_e(s + 1)) { in printTimerStats()
605 for (timer_e s = timer_e(0); s < TIMER_LAST; s = timer_e(s + 1)) { in printTimerStats()
619 char tag = timeStat::noUnits(timer_e(s)) ? ' ' : 'T'; in printTimerStats()
621 fprintf(statsOut, "%s\n", timeStat::name(timer_e(s))); in printTimerStats()
736 if (timeStat::logEvent((timer_e)i)) { in printPloticusFile()
737 rgb_color c = getEventColor((timer_e)i); in printPloticusFile()
742 timeStat::name((timer_e)i), c.r, c.g, c.b); in printPloticusFile()
830 for (timer_e s = timer_e(0); s < TIMER_LAST; s = timer_e(s + 1)) { in outputStats()