Home | History | Annotate | Download | only in callgrind

Lines Matching refs:CLG_

71 EventGroup* CLG_(register_event_group) (int id, const HChar* n1)
79 EventGroup* CLG_(register_event_group2)(int id, const HChar* n1,
89 EventGroup* CLG_(register_event_group3)(int id, const HChar* n1,
100 EventGroup* CLG_(register_event_group4)(int id, const HChar* n1,
113 EventGroup* CLG_(get_event_group)(int id)
152 EventSet* CLG_(get_event_set)(Int id)
158 EventSet* CLG_(get_event_set2)(Int id1, Int id2)
165 EventSet* CLG_(add_event_group)(EventSet* es, Int id)
172 EventSet* CLG_(add_event_group2)(EventSet* es, Int id1, Int id2)
180 EventSet* CLG_(add_event_set)(EventSet* es1, EventSet* es2)
189 ULong* CLG_(get_eventset_cost)(EventSet* es)
191 return CLG_(get_costarray)(es->size);
195 void CLG_(init_cost)(EventSet* es, ULong* cost)
206 void CLG_(init_cost_lz)(EventSet* es, ULong** cost)
212 *cost = CLG_(get_eventset_cost)(es);
218 void CLG_(zero_cost)(EventSet* es, ULong* cost)
228 Bool CLG_(is_zero_cost)(EventSet* es, ULong* cost)
240 void CLG_(copy_cost)(EventSet* es, ULong* dst, ULong* src)
245 CLG_(zero_cost)(es, dst);
254 void CLG_(copy_cost_lz)(EventSet* es, ULong** pdst, ULong* src)
262 CLG_(zero_cost)(es, *pdst);
267 dst = *pdst = CLG_(get_eventset_cost)(es);
273 void CLG_(add_cost)(EventSet* es, ULong* dst, ULong* src)
284 void CLG_(add_cost_lz)(EventSet* es, ULong** pdst, ULong* src)
294 dst = *pdst = CLG_(get_eventset_cost)(es);
295 CLG_(copy_cost)(es, dst, src);
304 Bool CLG_(add_and_zero_cost)(EventSet* es, ULong* dst, ULong* src)
323 Bool CLG_(add_and_zero_cost2)(EventSet* esDst, ULong* dst,
359 Bool CLG_(add_diff_cost)(EventSet* es, ULong* dst, ULong* old, ULong* new_cost)
377 Bool CLG_(add_diff_cost_lz)(EventSet* es, ULong** pdst, ULong* old, ULong* new_cost)
388 dst = *pdst = CLG_(get_eventset_cost)(es);
389 CLG_(zero_cost)(es, dst);
404 EventMapping* CLG_(get_eventmapping)(EventSet* es)
421 void CLG_(append_event)(EventMapping* em, const HChar* n)
450 HChar *CLG_(eventmapping_as_string)(const EventMapping* em)
478 HChar *CLG_(mappingcost_as_string)(const EventMapping* em, const ULong* c)