HomeSort by relevance Sort by last modified time
    Searched defs:step_size (Results 1 - 14 of 14) sorted by null

  /external/ceres-solver/include/ceres/internal/
numeric_diff.h 115 ParameterVector step_size = x.array().abs() * relative_step_size; local
118 // the mean step_size for the other dimensions. If all the
122 (step_size.sum() == 0)
124 : step_size.sum() / step_size.rows();
130 (step_size(j) == 0.0) ? fallback_step_size : step_size(j);
  /external/ceres-solver/internal/ceres/
line_search_minimizer.h 58 step_size(0.0) {
67 double step_size; member in struct:ceres::internal::LineSearchMinimizer::State
runtime_numeric_diff_cost_function.cc 74 ParameterVector step_size = x.array().abs() * relative_step_size; local
77 // step_size for the other dimensions.
78 double fallback_step_size = step_size.sum() / step_size.rows();
81 // relative step_size as absolute step_size and hope for the best.
88 if (step_size(j) == 0.0) {
89 // The parameter is exactly zero, so compromise and use the mean step_size
92 step_size(j) = fallback_step_size;
94 x_plus_delta(j) = x(j) + step_size(j)
    [all...]
line_search.cc 144 // Returns step_size \in [min_step_size, max_step_size] which minimizes the
209 double step_size = 0.0, unused_min_value = 0.0; local
211 &step_size, &unused_min_value);
212 return step_size;
229 // Note initial_cost & initial_gradient are evaluated at step_size = 0,
272 const double step_size = local
281 if (step_size * descent_direction_max_norm < options().min_step_size) {
283 StringPrintf("Line search failed: step_size too small: %.5e "
284 "with descent_direction_max_norm: %.5e.", step_size,
291 current.x = step_size;
545 const double step_size = local
    [all...]
  /external/ceres-solver/include/ceres/
iteration_callback.h 55 step_size(0.0),
124 double step_size; member in struct:ceres::IterationSummary
  /external/chromium_org/content/browser/renderer_host/p2p/
socket_host_tcp_unittest.cc 157 size_t step_size = std::min(step_sizes[step], received_data.size() - pos); local
158 socket_->AppendInputData(&received_data[pos], step_size);
159 pos += step_size;
303 size_t step_size = std::min(step_sizes[step], received_data.size() - pos); local
304 socket_->AppendInputData(&received_data[pos], step_size);
305 pos += step_size;
  /external/chromium_org/third_party/libwebp/enc/
filter.c 362 const int step_size = (delta_max - delta_min >= 4) ? 4 : 1; local
377 for (d = delta_min; d <= delta_max; d += step_size) {
  /external/webp/src/enc/
filter.c 362 const int step_size = (delta_max - delta_min >= 4) ? 4 : 1; local
377 for (d = delta_min; d <= delta_max; d += step_size) {
  /hardware/qcom/media/mm-video-v4l2/vidc/venc/src/
omx_video_base.cpp 1701 OMX_U32 min = 0, max = 0, step_size = 0; local
    [all...]
  /hardware/qcom/msm8x74/kernel-headers/linux/
msm_vidc_enc.h 286 unsigned long step_size; member in struct:venc_range
  /hardware/qcom/msm8x74/original-kernel-headers/linux/
msm_vidc_enc.h 516 unsigned long step_size; member in struct:venc_range
  /art/runtime/
debugger.cc 103 JDWP::JdwpStepSize step_size; member in struct:art::SingleStepControl
    [all...]
  /external/chromium_org/v8/src/
heap.cc 5956 intptr_t step_size = local
    [all...]
  /external/v8/src/
heap.cc 4854 intptr_t step_size = size_factor * IncrementalMarking::kAllocatedThreshold; local
    [all...]

Completed in 739 milliseconds