Home | History | Annotate | Download | only in callgrind

Lines Matching refs:EventSet

65 typedef struct _EventSet EventSet;
75 EventSet* CLG_(get_event_set)(Int id);
76 EventSet* CLG_(get_event_set2)(Int id1, Int id2);
77 EventSet* CLG_(add_event_group)(EventSet*, Int id);
78 EventSet* CLG_(add_event_group2)(EventSet*, Int id1, Int id2);
79 EventSet* CLG_(add_event_set)(EventSet*, EventSet*);
85 ULong* CLG_(get_eventset_cost)(EventSet*);
87 void CLG_(init_cost)(EventSet*,ULong*);
89 void CLG_(init_cost_lz)(EventSet*,ULong**);
91 void CLG_(zero_cost)(EventSet*,ULong*);
92 Bool CLG_(is_zero_cost)(EventSet*,ULong*);
93 void CLG_(copy_cost)(EventSet*,ULong* dst, ULong* src);
94 void CLG_(copy_cost_lz)(EventSet*,ULong** pdst, ULong* src);
95 void CLG_(add_cost)(EventSet*,ULong* dst, ULong* src);
96 void CLG_(add_cost_lz)(EventSet*,ULong** pdst, ULong* src);
98 Bool CLG_(add_and_zero_cost)(EventSet*,ULong* dst, ULong* src);
99 Bool CLG_(add_and_zero_cost2)(EventSet*,ULong* dst,EventSet*,ULong* src);
102 Bool CLG_(add_diff_cost)(EventSet*,ULong* dst, ULong* old, ULong* new_cost);
103 Bool CLG_(add_diff_cost_lz)(EventSet*,ULong** pdst, ULong* old, ULong* new_cost);
106 * This is used to print out part of an EventSet, or in another order.
115 EventSet* es;
122 EventMapping* CLG_(get_eventmapping)(EventSet*);