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

  /external/ceres-solver/internal/ceres/
trust_region_minimizer.cc 334 double new_cost = numeric_limits<double>::max(); local
336 &new_cost,
342 new_cost = numeric_limits<double>::max();
346 const double x_plus_delta_cost = new_cost;
353 &new_cost,
356 new_cost = x_plus_delta_cost;
361 model_cost_change += x_plus_delta_cost - new_cost;
364 << " new_cost: " << new_cost; local
384 VLOG(2) << "old cost: " << cost << " new cost: " << new_cost; local
    [all...]
  /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 194 const int new_cost = BranchCost(nb, total, new_p) local
197 const int use_new_p = (old_cost > new_cost);

Completed in 1083 milliseconds