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

  /external/ceres-solver/include/ceres/internal/
numeric_diff.h 122 ParameterVector step_size = x.array().abs() * relative_step_size; local
125 // the mean step_size for the other dimensions. If all the
129 (step_size.sum() == 0)
131 : step_size.sum() / step_size.rows();
139 (step_size(j) == 0.0) ? fallback_step_size : step_size(j);
  /external/ceres-solver/internal/ceres/
line_search_minimizer.h 56 step_size(0.0) {
65 double step_size; member in struct:ceres::internal::LineSearchMinimizer::State
line_search.cc 147 // Returns step_size \in [min_step_size, max_step_size] which minimizes the
213 double step_size = 0.0, unused_min_value = 0.0; local
215 &step_size, &unused_min_value);
216 return step_size;
233 // Note initial_cost & initial_gradient are evaluated at step_size = 0,
282 const double step_size = local
291 if (step_size * descent_direction_max_norm < options().min_step_size) {
293 StringPrintf("Line search failed: step_size too small: %.5e "
294 "with descent_direction_max_norm: %.5e.", step_size,
301 current.x = step_size;
597 const double step_size = local
    [all...]
  /external/ceres-solver/include/ceres/
dynamic_numeric_diff_cost_function.h 174 ParameterVector step_size = x.array().abs() * relative_step_size; local
177 // the mean step_size for the other dimensions.
178 double fallback_step_size = step_size.sum() / step_size.rows();
181 // relative step_size as absolute step_size and hope for the best.
188 if (step_size(j) == 0.0) {
190 // mean step_size from the other parameters. This can break in
193 step_size(j) = fallback_step_size;
195 x_plus_delta(j) = x(j) + step_size(j)
    [all...]
iteration_callback.h 57 step_size(0.0),
129 double step_size; member in struct:ceres::IterationSummary
  /external/opencv3/modules/photo/src/
arrays.hpp 176 inline int step_size(int dimension) function in struct:cv::Array4d
  /external/v8/test/unittests/heap/
gc-idle-time-handler-unittest.cc 43 size_t step_size = GCIdleTimeHandler::EstimateMarkingStepSize(1, 0); local
47 step_size); local
53 size_t step_size = GCIdleTimeHandler::EstimateMarkingStepSize( local
57 step_size); local
62 size_t step_size = GCIdleTimeHandler::EstimateMarkingStepSize( local
65 step_size); local
70 size_t step_size = GCIdleTimeHandler::EstimateMarkingStepSize( local
73 step_size); local
  /external/webp/src/enc/
filter.c 237 const int step_size = (delta_max - delta_min >= 4) ? 4 : 1; local
252 for (d = delta_min; d <= delta_max; d += step_size) {
  /external/opencv3/3rdparty/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) {
  /hardware/qcom/media/msm8974/mm-video-v4l2/vidc/venc/src/
omx_video_base.cpp 1781 OMX_U32 min = 0, max = 0, step_size = 0; local
    [all...]
  /hardware/qcom/media/msm8996/mm-video-v4l2/vidc/venc/src/
omx_video_base.cpp 1882 OMX_U32 min = 0, max = 0, step_size = 0; local
    [all...]
  /hardware/qcom/media/msmcobalt/mm-video-v4l2/vidc/venc/src/
omx_video_base.cpp 1914 OMX_U32 min = 0, max = 0, step_size = 0; local
    [all...]
  /hardware/qcom/msm8994/kernel-headers/linux/
msm_vidc_enc.h 290 unsigned long step_size; member in struct:venc_range
  /hardware/qcom/msm8994/original-kernel-headers/linux/
msm_vidc_enc.h 519 unsigned long step_size; member in struct:venc_range
  /hardware/qcom/msm8996/kernel-headers/linux/
msm_vidc_enc.h 290 unsigned long step_size; member in struct:venc_range
  /hardware/qcom/msm8996/original-kernel-headers/linux/
msm_vidc_enc.h 519 unsigned long step_size; member in struct:venc_range
  /hardware/qcom/msm8x84/kernel-headers/linux/
msm_vidc_enc.h 290 unsigned long step_size; member in struct:venc_range
  /hardware/qcom/msm8x84/original-kernel-headers/linux/
msm_vidc_enc.h 519 unsigned long step_size; member in struct:venc_range
  /external/v8/src/heap/
heap.h 2663 intptr_t step_size() const { return step_size_; } function in class:v8::internal::AllocationObserver
    [all...]

Completed in 559 milliseconds