Searched defs:estimate (Results 1 - 15 of 15) sorted by relevance

/external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/
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 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 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/boringssl/src/crypto/bn/
H A Dsqrt.c433 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/v8/src/
H A Dbignum-dtoa.cc374 double estimate = local
376 return static_cast<int>(estimate);
H A Dcompiler.cc548 // Sets the expected number of properties based on estimate from compiler.
550 int estimate) {
553 if (estimate == 0) estimate = 2;
557 // the estimate conservatively.
559 estimate += 2;
562 // so we can afford to adjust the estimate generously.
563 estimate += 8;
565 estimate += 3;
568 shared->set_expected_nof_properties(estimate);
549 SetExpectedNofPropertiesFromEstimate(Handle<SharedFunctionInfo> shared, int estimate) argument
[all...]
/external/openfst/src/include/fst/
H A Dqueue.h731 // 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/valgrind/none/tests/ppc32/
H A Dtest_isa_2_06_part3.c423 * 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 Dtest_isa_2_06_part3.c423 * 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/coregrind/m_demangle/
H A Dcp-demangle.c3749 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/flac/libFLAC/
H A Dstream_encoder.c3640 unsigned estimate
3657 if(estimate != actual)
3658 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);
3672 unsigned estimate; local
3676 estimate = FLAC__SUBFRAME_ZERO_PAD_LEN + FLAC__SUBFRAME_TYPE_LEN + FLAC__SUBFRAME_WASTED_BITS_FLAG_LEN + subframe->wasted_bits + subframe_bps;
3679 spotcheck_subframe_estimate_(encoder, blocksize, subframe_bps, subframe, estimate);
3684 return estimate;
3706 unsigned i, residual_bits, estimate; local
3739 estimate
3771 unsigned i, residual_bits, estimate; local
3843 unsigned estimate; local
[all...]
/external/mdnsresponder/mDNSCore/
H A DDNSCommon.c1394 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/vixl/src/vixl/a64/
H A Dlogic-a64.cc4590 double estimate = recip_sqrt_estimate(scaled); local
4594 Bits(double_to_rawbits(estimate), 51, 29));
4597 Bits(double_to_rawbits(estimate), 51, 0));
4695 double estimate = recip_estimate(scaled); local
4697 fraction = double_mantissa(estimate);

Completed in 745 milliseconds