Searched refs:kmp_stats_event (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/llvm-project/openmp/runtime/src/ |
H A D | kmp_stats.h | 615 class kmp_stats_event { 622 kmp_stats_event() in kmp_stats_event() function 624 kmp_stats_event(uint64_t strt, uint64_t stp, int nst, timer_e nme) in kmp_stats_event() function 659 kmp_stats_event *events; 667 (kmp_stats_event *)__kmp_allocate(sizeof(kmp_stats_event) * INIT_SIZE); in kmp_stats_event_vector() 678 kmp_stats_event *tmp = (kmp_stats_event *)__kmp_allocate( in push_back() 679 sizeof(kmp_stats_event) * allocated_size * 2); in push_back() 687 kmp_stats_event(start_time, stop_time, nest_level, name); in push_back() 693 const kmp_stats_event &operator[](int index) const { return events[index]; } 694 kmp_stats_event &operator[](int index) { return events[index]; } [all …]
|
H A D | kmp_stats.cpp | 368 const kmp_stats_event *ev1 = RCAST(const kmp_stats_event *, event1); in compare_two_events() 369 const kmp_stats_event *ev2 = RCAST(const kmp_stats_event *, event2); in compare_two_events() 380 qsort(events, internal_size, sizeof(kmp_stats_event), compare_two_events); in sort() 672 kmp_stats_event ev = theEvents->at(i); in printEvents()
|