Searched refs:new_cost (Results 1 - 3 of 3) sorted by relevance

/external/valgrind/callgrind/
H A Devents.h102 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);
H A Devents.c359 Bool CLG_(add_diff_cost)(EventSet* es, ULong* dst, ULong* old, ULong* new_cost) argument
365 CLG_ASSERT(old && new_cost);
368 if (new_cost[i] == old[i]) continue;
369 dst[i] += new_cost[i] - old[i];
370 old[i] = new_cost[i];
377 Bool CLG_(add_diff_cost_lz)(EventSet* es, ULong** pdst, ULong* old, ULong* new_cost) argument
384 CLG_ASSERT(old && new_cost);
393 if (new_cost[i] == old[i]) continue;
394 dst[i] += new_cost[i] - old[i];
395 old[i] = new_cost[
[all...]
/external/webp/src/enc/
H A Dframe_enc.c159 const int new_cost = BranchCost(nb, total, new_p) local
162 const int use_new_p = (old_cost > new_cost);

Completed in 137 milliseconds