Home | History | Annotate | Download | only in callgrind

Lines Matching refs:EventSet

63 typedef struct _EventSet EventSet;
73 EventSet* CLG_(get_event_set)(Int id);
74 EventSet* CLG_(get_event_set2)(Int id1, Int id2);
75 EventSet* CLG_(get_event_set3)(Int id1, Int id2, Int id3);
76 EventSet* CLG_(add_event_group)(EventSet*, Int id);
77 EventSet* CLG_(add_event_group2)(EventSet*, Int id1, Int id2);
78 EventSet* CLG_(add_event_set)(EventSet*, EventSet*);
80 Int CLG_(sprint_eventset)(Char* buf, EventSet*);
86 ULong* CLG_(get_eventset_cost)(EventSet*);
88 void CLG_(init_cost)(EventSet*,ULong*);
90 void CLG_(init_cost_lz)(EventSet*,ULong**);
92 void CLG_(zero_cost)(EventSet*,ULong*);
93 Bool CLG_(is_zero_cost)(EventSet*,ULong*);
94 Bool CLG_(is_equal_cost)(EventSet*,ULong*,ULong*);
95 void CLG_(copy_cost)(EventSet*,ULong* dst, ULong* src);
96 void CLG_(copy_cost_lz)(EventSet*,ULong** pdst, ULong* src);
97 void CLG_(add_cost)(EventSet*,ULong* dst, ULong* src);
98 void CLG_(add_cost_lz)(EventSet*,ULong** pdst, ULong* src);
100 Bool CLG_(add_and_zero_cost)(EventSet*,ULong* dst, ULong* src);
101 Bool CLG_(add_and_zero_cost2)(EventSet*,ULong* dst,EventSet*,ULong* src);
104 Bool CLG_(add_diff_cost)(EventSet*,ULong* dst, ULong* old, ULong* new_cost);
105 Bool CLG_(add_diff_cost_lz)(EventSet*,ULong** pdst, ULong* old, ULong* new_cost);
107 Int CLG_(sprint_cost)(Char* buf, EventSet*, ULong*);
110 * This is used to print out part of an EventSet, or in another order.
119 EventSet* es;
126 EventMapping* CLG_(get_eventmapping)(EventSet*);