Home
last modified time | relevance | path

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

/external/valgrind/main/callgrind/
Devents.c401 Bool CLG_(add_diff_cost)(EventSet* es, ULong* dst, ULong* old, ULong* new_cost) in CLG_()
407 CLG_ASSERT(old && new_cost); in CLG_()
410 if (new_cost[i] == old[i]) continue; in CLG_()
411 dst[i] += new_cost[i] - old[i]; in CLG_()
412 old[i] = new_cost[i]; in CLG_()
419 Bool CLG_(add_diff_cost_lz)(EventSet* es, ULong** pdst, ULong* old, ULong* new_cost) in CLG_()
426 CLG_ASSERT(old && new_cost); in CLG_()
435 if (new_cost[i] == old[i]) continue; in CLG_()
436 dst[i] += new_cost[i] - old[i]; in CLG_()
437 old[i] = new_cost[i]; in CLG_()
Devents.h104 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);
/external/webp/src/enc/
Dframe.c177 const uint64_t new_cost = VP8BranchCost(cnt[0], cnt[1], new_p) in FinalizeTokenProbas() local
179 const int use_new_p = (old_cost > new_cost); in FinalizeTokenProbas()