Lines Matching defs:events
599 Its main purpose is for showing how events are nested inside each other.
600 For example, say events, A, B, and C are recorded. If the timeline
633 Class to implement a dynamically expandable array of events
645 reallocations are needed (where N is number of events). If you want
659 kmp_stats_event *events;
666 events =
681 tmp[i] = events[i];
682 __kmp_free(events);
683 events = tmp;
686 events[internal_size] =
693 const kmp_stats_event &operator[](int index) const { return events[index]; }
694 kmp_stats_event &operator[](int index) { return events[index]; }
695 const kmp_stats_event &at(int index) const { return events[index]; }
696 kmp_stats_event &at(int index) { return events[index]; }
716 thread's timing events. The event vector expands as necessary and records
719 The nestLevel variable is for plotting events and is related
799 This module holds filenames for various outputs (normal stats, events, plot
814 KMP_STATS_FILE -- if set, all statistics (not events) will be printed to this
819 otherwise, the plot file is sent to "events.plt"
820 KMP_STATS_EVENTS -- if set to "on", then log events, otherwise, don't log
821 events
822 KMP_STATS_EVENTS_FILE -- if set, all events are outputted to this file,
823 otherwise, output is sent to "events.dat"