Searched refs:estimate (Results 1 - 25 of 38) sorted by relevance

12

/external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/
H A DEstimatedParameter.java44 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 ne
94 setEstimate(double estimate) argument
[all...]
H A DEstimator.java28 * <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
H A DGaussNewtonEstimator.java161 public void estimate(EstimationProblem problem) method in class:GaussNewtonEstimator
H A DAbstractEstimator.java99 * @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
H A DLevenbergMarquardtEstimator.java181 * @see #estimate
191 * @see #estimate
202 * @see #estimate
213 * @see #estimate
248 public void estimate(EstimationProblem problem) method in class:LevenbergMarquardtEstimator
646 // compute an improved estimate for lmPar
/external/skqp/include/private/
H A DSkFloatingPoint.h145 // Get initial estimate.
149 float estimate; local
150 memcpy(&estimate, &i, 4);
153 const float estimate_sq = estimate*estimate;
154 estimate *= 0.703952253f*(2.38924456f-x*estimate_sq);
155 return estimate;
171 // Get initial estimate.
173 float32x2_t estimate = vrsqrte_f32(xx);
176 const float32x2_t estimate_sq = vmul_f32(estimate, estimat
[all...]
/external/skia/include/private/
H A DSkFloatingPoint.h145 // Get initial estimate.
149 float estimate; local
150 memcpy(&estimate, &i, 4);
153 const float estimate_sq = estimate*estimate;
154 estimate *= 0.703952253f*(2.38924456f-x*estimate_sq);
155 return estimate;
171 // Get initial estimate.
173 float32x2_t estimate = vrsqrte_f32(xx);
176 const float32x2_t estimate_sq = vmul_f32(estimate, estimat
[all...]
/external/boringssl/src/crypto/fipsmodule/bn/
H A Dsqrt.c428 BIGNUM *estimate, *tmp, *delta, *last_delta, *tmp2; local
442 estimate = BN_CTX_get(ctx);
444 estimate = out_sqrt;
449 if (estimate == NULL || tmp == NULL || last_delta == NULL || delta == NULL) {
454 // We estimate that the square root of an n-bit number is 2^{n/2}.
455 if (!BN_lshift(estimate, BN_value_one(), BN_num_bits(in)/2)) {
459 // This is Newton's method for finding a root of the equation |estimate|^2 -
462 // |estimate| = 1/2 * (|estimate| + |in|/|estimate|)
[all...]
/external/libxcam/plugins/smart/dvs/libdvs/
H A Dstabilizer.cpp115 return motionEstimator_.dynamicCast<KeypointBasedMotionEstimator>()->estimate(ugrayImage0, ugrayImage1);
117 return motionEstimator_.dynamicCast<KeypointBasedMotionEstimator>()->estimate(at(curPos_ - 1, frames_), at(curPos_, frames_));
233 return motionEstimator_.dynamicCast<KeypointBasedMotionEstimator>()->estimate(ugrayImage0, ugrayImage1);
235 return motionEstimator_.dynamicCast<KeypointBasedMotionEstimator>()->estimate(at(curPos_ - 1, frames_), at(curPos_, frames_));
/external/swiftshader/third_party/subzero/pydir/
H A Dbisection-tool.py19 def estimate(self, included_ranges): member in class:Runner
75 + str(self.estimate(included_ranges))
/external/tensorflow/tensorflow/core/grappler/optimizers/
H A Dstatic_schedule.cc46 Costs::NanoSeconds estimate = local
50 return std::max(estimate, Costs::NanoSeconds(1));
/external/webrtc/webrtc/modules/video_coding/test/
H A DplotReceiveTrace.m7 %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/
H A Ddng_bad_pixels.cpp1022 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
1686 p [0] = (uint16) estimate;
/external/syslinux/com32/lua/src/
H A Dlgc.c913 static void setpause (global_State *g, l_mem estimate) { argument
915 estimate = estimate / PAUSEADJ; /* adjust 'estimate' */
916 threshold = (g->gcpause < MAX_LMEM / estimate) /* overflow? */
917 ? estimate * g->gcpause /* no overflow */
1036 return work; /* estimate of memory marked by 'atomic' */
1063 g->GCestimate += work; /* estimate of total memory traversed */
1125 lu_mem estimate = g->GCestimate; local
1128 if (gettotalbytes(g) > (estimate / 10
[all...]
/external/v8/src/
H A Dbignum-dtoa.cc372 double estimate = local
374 return static_cast<int>(estimate);
/external/skia/tests/
H A DMathTest.cpp320 float estimate = rsqrt(input); local
321 float relativeError = sk_float_abs(exact - estimate)/exact;
330 float estimate = rsqrt(input); local
331 float relativeError = sk_float_abs(exact - estimate)/exact;
340 float estimate = rsqrt(input); local
341 float relativeError = sk_float_abs(exact - estimate)/exact;
/external/skqp/tests/
H A DMathTest.cpp320 float estimate = rsqrt(input); local
321 float relativeError = sk_float_abs(exact - estimate)/exact;
330 float estimate = rsqrt(input); local
331 float relativeError = sk_float_abs(exact - estimate)/exact;
340 float estimate = rsqrt(input); local
341 float relativeError = sk_float_abs(exact - estimate)/exact;
/external/flac/libFLAC/
H A Dstream_encoder.c3642 unsigned estimate
3659 if(estimate != actual)
3660 fprintf(stderr, "EST: bad, frame#%u sub#%%d type=%8s est=%u, actual=%u, delta=%d\n", encoder->private_->current_frame_number, FLAC__SubframeTypeString[subframe->type], estimate, actual, (int)actual-(int)estimate);
3674 unsigned estimate; local
3678 estimate = FLAC__SUBFRAME_ZERO_PAD_LEN + FLAC__SUBFRAME_TYPE_LEN + FLAC__SUBFRAME_WASTED_BITS_FLAG_LEN + subframe->wasted_bits + subframe_bps;
3681 spotcheck_subframe_estimate_(encoder, blocksize, subframe_bps, subframe, estimate);
3686 return estimate;
3708 unsigned i, residual_bits, estimate; local
3741 estimate
3773 unsigned i, residual_bits, estimate; local
3845 unsigned estimate; local
[all...]
/external/tensorflow/tensorflow/contrib/metrics/python/ops/
H A Dmetric_ops.py1217 logit_transformation: A boolean value indicating whether the estimate should
1334 estimate = math_ops.log(auc / (1. - auc + _EPSILON))
1336 transformed_auc_lower = estimate + (z_value * std_err)
1337 transformed_auc_upper = estimate - (z_value * std_err)
1345 estimate = auc
1347 auc_lower = estimate + (z_value * std_err)
1348 auc_upper = estimate - (z_value * std_err)
1350 ## If estimate is 1 or 0, no variance is present so CI = 1
1399 logit_transformation: A boolean value indicating whether the estimate should
2958 in order to get an unbiased estimate
[all...]
/external/valgrind/none/tests/ppc32/
H A Dtest_isa_2_06_part3.c428 * estimate instructions.
435 * valgrind can easily differ from the estimate in the lower bits (within the 14 bits of
436 * precision) and the estimate may still be within expected tolerances. On top of that,
1106 Bool estimate = (test_group.type == VX_ESTIMATE); local
1158 if (estimate) {
1217 if (estimate) {
/external/valgrind/none/tests/ppc64/
H A Dtest_isa_2_06_part3.c428 * estimate instructions.
435 * valgrind can easily differ from the estimate in the lower bits (within the 14 bits of
436 * precision) and the estimate may still be within expected tolerances. On top of that,
1106 Bool estimate = (test_group.type == VX_ESTIMATE); local
1158 if (estimate) {
1217 if (estimate) {
/external/mdnsresponder/mDNSCore/
H A DDNSCommon.h169 extern mDNSu16 GetRDLength(const ResourceRecord *const rr, mDNSBool estimate);
/external/v8/src/runtime/
H A Druntime-array.cc177 // to generate the estimate.
189 int estimate = static_cast<int>((kNumberOfHoleCheckSamples - holes) / local
191 return Smi::FromInt(estimate);
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dcommon.c1210 * It's possible to estimate RCPI based on RSSI in dBm. This calculation will
/external/wpa_supplicant_8/src/utils/
H A Dcommon.c1210 * It's possible to estimate RCPI based on RSSI in dBm. This calculation will

Completed in 7638 milliseconds

12