/external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/ |
H A D | 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 ne 94 setEstimate(double estimate) argument [all...] |
H A D | 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
|
H A D | GaussNewtonEstimator.java | 161 public void estimate(EstimationProblem problem) method in class:GaussNewtonEstimator
|
H A D | 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
|
H A D | LevenbergMarquardtEstimator.java | 181 * @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/skia/include/private/ |
H A D | 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/boringssl/src/crypto/bn/ |
H A D | 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...] |
/external/webrtc/webrtc/modules/video_coding/test/ |
H A D | 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/ |
H A D | 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 1686 p [0] = (uint16) estimate;
|
/external/v8/src/ |
H A D | bignum-dtoa.cc | 372 double estimate = local 374 return static_cast<int>(estimate);
|
H A D | objects.cc | 10918 // Rough estimate of line count based on a roughly estimated average 13246 // Sets the expected number of properties based on estimate from parser. 13249 int estimate = literal->expected_property_count(); local 13253 if (estimate == 0) estimate = 2; 13257 // the estimate conservatively. 13259 estimate += 2; 13262 // so we can afford to adjust the estimate generously. 13263 estimate += 8; 13266 shared->set_expected_nof_properties(estimate); [all...] |
/external/skia/tests/ |
H A D | 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/ |
H A D | runtime-array.cc | 157 // to generate the estimate. 169 int estimate = static_cast<int>((kNumberOfHoleCheckSamples - holes) / local 171 return Smi::FromInt(estimate);
|
/external/openfst/src/include/fst/ |
H A D | queue.h | 731 // An A* estimate is a function object that maps from a state ID to a 732 // an estimate of the shortest distance to the final states. 733 // The trivial A* estimate is always One(). 742 // function object between weights, and an estimate E of the 753 const E &estimate) 754 : weights_(weights), less_(less), estimate_(estimate) {} 770 // estimate E of the shortest distance to the final states, is specialized 778 NaturalAStarQueue(const vector<W> &distance, const E &estimate) : argument 779 ShortestFirstQueue<S, C>(C(distance, less_, estimate)) {} 752 AStarWeightCompare(const vector<Weight>& weights, const L &less, const E &estimate) argument
|
/external/flac/libFLAC/ |
H A D | stream_encoder.c | 3647 unsigned estimate 3664 if(estimate != actual) 3665 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); 3679 unsigned estimate; local 3683 estimate = FLAC__SUBFRAME_ZERO_PAD_LEN + FLAC__SUBFRAME_TYPE_LEN + FLAC__SUBFRAME_WASTED_BITS_FLAG_LEN + subframe->wasted_bits + subframe_bps; 3686 spotcheck_subframe_estimate_(encoder, blocksize, subframe_bps, subframe, estimate); 3691 return estimate; 3713 unsigned i, residual_bits, estimate; local 3746 estimate 3778 unsigned i, residual_bits, estimate; local 3850 unsigned estimate; local [all...] |
/external/valgrind/none/tests/ppc32/ |
H A D | test_isa_2_06_part3.c | 423 * estimate instructions. 430 * valgrind can easily differ from the estimate in the lower bits (within the 14 bits of 431 * precision) and the estimate may still be within expected tolerances. On top of that, 1101 Bool estimate = (test_group.type == VX_ESTIMATE); local 1153 if (estimate) { 1212 if (estimate) {
|
/external/valgrind/none/tests/ppc64/ |
H A D | test_isa_2_06_part3.c | 423 * estimate instructions. 430 * valgrind can easily differ from the estimate in the lower bits (within the 14 bits of 431 * precision) and the estimate may still be within expected tolerances. On top of that, 1101 Bool estimate = (test_group.type == VX_ESTIMATE); local 1153 if (estimate) { 1212 if (estimate) {
|
/external/mdnsresponder/mDNSCore/ |
H A D | DNSCommon.h | 169 extern mDNSu16 GetRDLength(const ResourceRecord *const rr, mDNSBool estimate);
|
H A D | DNSCommon.c | 1394 mDNSexport mDNSu16 GetRDLength(const ResourceRecord *const rr, mDNSBool estimate) argument 1397 const domainname *const name = estimate ? rr->name : mDNSNULL; 1448 return(mDNSu16)((estimate ? 2 : DomainNameLength(rr->name)) + (i ? (2 + i) : 0));
|
/external/valgrind/coregrind/m_demangle/ |
H A D | cp-demangle.c | 3749 d_growable_string_init (struct d_growable_string *dgs, size_t estimate) argument 3756 if (estimate > 0) 3757 d_growable_string_resize (dgs, estimate); 4121 int estimate, size_t *palc) 4125 d_growable_string_init (&dgs, estimate); 4120 cplus_demangle_print(int options, const struct demangle_component *dc, int estimate, size_t *palc) argument
|
/external/vixl/src/vixl/a64/ |
H A D | logic-a64.cc | 4594 uint64_t estimate = double_to_rawbits(recip_sqrt_estimate(scaled)); local 4598 uint32_t est_bits = static_cast<uint32_t>(Bits(estimate, 51, 29)); 4601 return double_pack(0, Bits(result_exp, 10, 0), Bits(estimate, 51, 0)); 4699 double estimate = recip_estimate(scaled); local 4701 fraction = double_mantissa(estimate);
|
/external/iproute2/doc/ |
H A D | ip-cref.tex | 1327 --- the initial RTT (``Round Trip Time'') estimate. 1332 --- \threeonly the initial RTT variance estimate. 1337 --- \threeonly an estimate for the initial slow start threshold.
|
/external/robolectric/v3/runtime/ |
H A D | android-all-4.1.2_r1-robolectric-0.jar | META-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ... |
H A D | android-all-4.2.2_r1.2-robolectric-0.jar | META-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ... |
H A D | android-all-4.3_r2-robolectric-0.jar | META-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ... |