HomeSort by relevance Sort by last modified time
    Searched refs:new_cost (Results 1 - 3 of 3) sorted by null

  /external/valgrind/main/callgrind/
events.c 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]
    [all...]
events.h 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);
  /external/webp/src/enc/
frame.c 177 const uint64_t new_cost = VP8BranchCost(cnt[0], cnt[1], new_p) local
179 const int use_new_p = (old_cost > new_cost);

Completed in 169 milliseconds