Searched refs:kmp_stats_event (Results 1 – 2 of 2) sorted by relevance
/external/llvm-project/openmp/runtime/src/ |
D | kmp_stats.h | 605 class kmp_stats_event { 612 kmp_stats_event() in kmp_stats_event() function 614 kmp_stats_event(uint64_t strt, uint64_t stp, int nst, timer_e nme) in kmp_stats_event() function 649 kmp_stats_event *events; 657 (kmp_stats_event *)__kmp_allocate(sizeof(kmp_stats_event) * INIT_SIZE); in kmp_stats_event_vector() 668 kmp_stats_event *tmp = (kmp_stats_event *)__kmp_allocate( in push_back() 669 sizeof(kmp_stats_event) * allocated_size * 2); in push_back() 677 kmp_stats_event(start_time, stop_time, nest_level, name); in push_back() 683 const kmp_stats_event &operator[](int index) const { return events[index]; } 684 kmp_stats_event &operator[](int index) { return events[index]; } [all …]
|
D | kmp_stats.cpp | 365 const kmp_stats_event *ev1 = RCAST(const kmp_stats_event *, event1); in compare_two_events() 366 const kmp_stats_event *ev2 = RCAST(const kmp_stats_event *, event2); in compare_two_events() 377 qsort(events, internal_size, sizeof(kmp_stats_event), compare_two_events); in sort() 669 kmp_stats_event ev = theEvents->at(i); in printEvents()
|