Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_stats.cpp637 fprintf(statsOut, "%-25s, %s\n", counter::name(counter_e(s)), in printCounterStats()
647 fprintf(statsOut, "%s\n", counter::name(counter_e(s))); in printCounterStats()
661 fprintf(statsOut, "%-25s, %s\n", counter::name(counter_e(c)), in printCounters()
856 for (counter_e c = counter_e(0); c < COUNTER_LAST; c = counter_e(c + 1)) { in outputStats()
H A Dkmp_stats.h312 enum counter_e { KMP_FOREACH_COUNTER(ENUMERATE, COUNTER_) COUNTER_LAST }; enum
576 static const char *name(counter_e e) { return counterInfo[e].name; } in name()
577 static bool masterOnly(counter_e e) { in masterOnly()
747 inline counter *getCounter(counter_e idx) { return &_counters[idx]; } in getCounter()