Home | History | Annotate | Download | only in callgrind

Lines Matching refs:old

399 /* Adds difference of new and old to dst, and set old to new.
401 Bool CLG_(add_diff_cost)(EventSet* es, ULong* dst, ULong* old, ULong* new_cost)
407 CLG_ASSERT(old && new_cost);
410 if (new_cost[i] == old[i]) continue;
411 dst[i] += new_cost[i] - old[i];
412 old[i] = new_cost[i];
419 Bool CLG_(add_diff_cost_lz)(EventSet* es, ULong** pdst, ULong* old, ULong* new_cost)
426 CLG_ASSERT(old && new_cost);
435 if (new_cost[i] == old[i]) continue;
436 dst[i] += new_cost[i] - old[i];
437 old[i] = new_cost[i];