HomeSort by relevance Sort by last modified time
    Searched refs:estimate (Results 1 - 25 of 44) sorted by null

1 2

  /external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/
EstimatedParameter.java 44 protected double estimate; field in class:EstimatedParameter
55 * Build an instance from a first estimate of the parameter,
58 * @param firstEstimate first estimate of the parameter
62 estimate = firstEstimate;
67 * Build an instance from a first estimate of the parameter and a
70 * @param firstEstimate first estimate of the parameter
77 estimate = firstEstimate;
87 estimate = parameter.estimate;
92 * @param estimate new estimate for the paramete
    [all...]
Estimator.java 28 * <p>The interface is composed only of the {@link #estimate estimate}
48 * estimate of the parameters can be retrieved from the problem
56 void estimate(EstimationProblem problem) throws EstimationException; method in interface:Estimator
GaussNewtonEstimator.java 161 public void estimate(EstimationProblem problem) method in class:GaussNewtonEstimator
AbstractEstimator.java 99 * @see #estimate
277 * of the {@link #estimate(EstimationProblem) estimate}
307 * estimate of the parameters can be retrieved from the problem
315 public abstract void estimate(EstimationProblem problem) method in class:AbstractEstimator
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/
reloc-estimate-1.d 2 #source: reloc-estimate-1a.s
3 #source: reloc-estimate-1b.s
4 #ld: -shared -T reloc-estimate-1.ld
got-page-3.d 10 # with a page estimate of 10. Thus the first page entry has offset
  /external/skia/include/private/
SkFloatingPoint.h 131 // Get initial estimate.
134 float estimate = *SkTCast<float*>(&i); local
137 const float estimate_sq = estimate*estimate;
138 estimate *= 0.703952253f*(2.38924456f-x*estimate_sq);
139 return estimate;
155 // Get initial estimate.
157 float32x2_t estimate = vrsqrte_f32(xx);
160 const float32x2_t estimate_sq = vmul_f32(estimate, estimate);
    [all...]
  /external/opencv3/modules/videostab/include/opencv2/videostab/
global_motion.hpp 120 virtual Mat estimate(InputArray points0, InputArray points1, bool *ok = 0) = 0;
142 virtual Mat estimate(InputArray points0, InputArray points1, bool *ok = 0);
158 virtual Mat estimate(InputArray points0, InputArray points1, bool *ok = 0);
183 virtual Mat estimate(const Mat &frame0, const Mat &frame1, bool *ok = 0) = 0;
197 virtual Mat estimate(const Mat &frame0, const Mat &frame1, bool *ok = 0);
211 virtual Mat estimate(const Mat &frame0, const Mat &frame1, bool *ok = 0);
238 virtual Mat estimate(const Mat &frame0, const Mat &frame1, bool *ok = 0);
265 virtual Mat estimate(const Mat &frame0, const Mat &frame1, bool *ok = 0);
266 Mat estimate(const cuda::GpuMat &frame0, const cuda::GpuMat &frame1, bool *ok = 0);
  /external/boringssl/src/crypto/bn/
sqrt.c 433 BIGNUM *estimate, *tmp, *delta, *last_delta, *tmp2; local
447 estimate = BN_CTX_get(ctx);
449 estimate = out_sqrt;
454 if (estimate == NULL || tmp == NULL || last_delta == NULL || delta == NULL) {
459 /* We estimate that the square root of an n-bit number is 2^{n/2}. */
460 BN_lshift(estimate, BN_value_one(), BN_num_bits(in)/2);
462 /* This is Newton's method for finding a root of the equation |estimate|^2 -
465 /* |estimate| = 1/2 * (|estimate| + |in|/|estimate|) */
    [all...]
  /frameworks/base/core/java/android/view/
VelocityTracker.java 256 * Gets an estimate of the X position of the pointer at the specified time point.
261 return estimate(time, xCoeff);
265 * Gets an estimate of the Y position of the pointer at the specified time point.
270 return estimate(time, yCoeff);
291 private float estimate(float time, float[] c) { method in class:VelocityTracker.Estimator
  /external/opencv3/modules/stitching/include/opencv2/stitching/detail/
motion_estimators.hpp 80 { return estimate(features, pairwise_matches, cameras); }
91 virtual bool estimate(const std::vector<ImageFeatures> &features,
105 virtual bool estimate(const std::vector<ImageFeatures> &features,
146 virtual bool estimate(const std::vector<ImageFeatures> &features,
201 It can estimate focal length, aspect ratio, principal point.
222 It can estimate focal length. It ignores the refinement mask for now.
  /frameworks/base/libs/common_time/
common_clock_service.h 43 virtual status_t getEstimatedError(int32_t* estimate);
common_clock_service.cpp 75 status_t CommonClockService::getEstimatedError(int32_t* estimate) {
76 *estimate = mTimeServer.getEstimatedError();
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/include/gcc/darwin/4.2/
ppc_intrinsics.h 82 * __fres - Floating Reciprocal Estimate
84 * __frsqrte - Floating Reciprocal Square Root Estimate
85 * __frsqrtes - Floating Reciprocal Square Root Estimate Single
723 * __fres - Floating Reciprocal Estimate
734 float estimate; local
736 /* outputs: */ : "=f" (estimate)
738 return estimate;
756 * __frsqrte - Floating Reciprocal Square Root Estimate
764 double estimate; local
767 /* outputs: */ : "=f" (estimate)
    [all...]
  /frameworks/av/include/common_time/
ICommonClock.h 51 // a reserved invalid error estimate
81 virtual status_t getEstimatedError(int32_t* estimate) = 0;
  /libcore/ojluni/src/main/java/java/util/stream/
StreamSpliterators.java 221 // Use the estimate of the wrapped spliterator
245 // with an exact size to an estimate for a sub-split, for example
247 // but for sub-splits only an estimate is known
642 // thereby ensuring the size estimate decreases.
1328 long estimate; field in class:StreamSpliterators.AbstractWrappingSpliterator.InfiniteSupplyingSpliterator
    [all...]
  /external/opencv3/modules/videostab/src/
global_motion.cpp 489 Mat MotionEstimatorRansacL2::estimate(InputArray points0, InputArray points1, bool *ok) function in class:cv::videostab::MotionEstimatorRansacL2
531 Mat MotionEstimatorL1::estimate(InputArray points0, InputArray points1, bool *ok) function in class:cv::videostab::MotionEstimatorL1
667 Mat FromFileMotionReader::estimate(const Mat &/*frame0*/, const Mat &/*frame1*/, bool *ok) function in class:cv::videostab::FromFileMotionReader
687 Mat ToFileMotionWriter::estimate(const Mat &frame0, const Mat &frame1, bool *ok) function in class:cv::videostab::ToFileMotionWriter
690 Mat_<float> M = motionEstimator_->estimate(frame0, frame1, &ok_);
708 Mat KeypointBasedMotionEstimator::estimate(const Mat &frame0, const Mat &frame1, bool *ok) function in class:cv::videostab::KeypointBasedMotionEstimator
763 // estimate motion
764 return motionEstimator_->estimate(pointsPrevGood_, pointsGood_, ok);
779 Mat KeypointBasedMotionEstimatorGpu::estimate(const Mat &frame0, const Mat &frame1, bool *ok) function in class:cv::videostab::KeypointBasedMotionEstimatorGpu
783 return estimate(frame0_, frame1_, ok)
787 Mat KeypointBasedMotionEstimatorGpu::estimate(const cuda::GpuMat &frame0, const cuda::GpuMat &frame1, bool *ok) function in class:cv::videostab::KeypointBasedMotionEstimatorGpu
    [all...]
stabilizer.cpp 293 return motionEstimator_->estimate(at(curPos_ - 1, frames_), at(curPos_, frames_));
377 // estimate motions
389 motions_.push_back(motionEstimator_->estimate(prevFrame, frame, &ok));
393 Mat M = wobbleSuppressor_->motionEstimator()->estimate(prevFrame, frame, &ok2);
439 // estimate optimal trim ratio if necessary
  /art/runtime/
oat.cc 34 size_t estimate = 0U; local
39 estimate += it->first.length() + 1;
40 estimate += it->second.length() + 1;
43 return sizeof(OatHeader) + estimate;
50 // Estimate size of optional data.
  /external/webrtc/webrtc/modules/video_coding/test/
plotReceiveTrace.m 7 %DEBUG ; ( 7:59:42:500 | 0) VIDEO:-1 ; 2500; Received complete frame timestamp 1870514263 frame type 1 frame size 7862 at time 19965, jitter estimate was 130
89 [p, count] = sscanf(message, 'Received complete frame timestamp %lu frame type %u frame size %*u at time %lu, jitter estimate was %lu');
  /external/dng_sdk/source/
dng_bad_pixels.cpp 1022 uint32 estimate = (total + (count >> 1)) / count; local
1024 p2 [2] = (uint16) estimate;
1100 uint32 estimate = (total + (count >> 1)) / count; local
1102 p [0] = (uint16) estimate;
1230 // In case there is some green split, make an estimate of
1510 uint32 estimate = (total + (count >> 1)) / count; local
1512 p4 [4] = (uint16) Pin_uint32 (lower, estimate, upper);
1684 uint32 estimate = (total + (count >> 1)) \/ count; local
    [all...]
  /external/v8/src/
bignum-dtoa.cc 372 double estimate = local
374 return static_cast<int>(estimate);
  /external/skia/tests/
MathTest.cpp 391 float estimate = rsqrt(input); local
392 float relativeError = sk_float_abs(exact - estimate)/exact;
401 float estimate = rsqrt(input); local
402 float relativeError = sk_float_abs(exact - estimate)/exact;
411 float estimate = rsqrt(input); local
412 float relativeError = sk_float_abs(exact - estimate)/exact;
  /external/v8/src/runtime/
runtime-array.cc 157 // to generate the estimate.
169 int estimate = static_cast<int>((kNumberOfHoleCheckSamples - holes) / local
171 return Smi::FromInt(estimate);
  /frameworks/av/media/common_time/
ICommonClock.cpp 154 virtual status_t getEstimatedError(int32_t* estimate) {
161 *estimate = reply.readInt32();

Completed in 1064 milliseconds

1 2