Home
last modified time | relevance | path

Searched refs:estimate (Results 1 – 25 of 133) sorted by relevance

123456

/external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/
DEstimatedParameter.java44 protected double estimate; field in EstimatedParameter
62 estimate = firstEstimate; in EstimatedParameter()
77 estimate = firstEstimate; in EstimatedParameter()
87 estimate = parameter.estimate; in EstimatedParameter()
94 public void setEstimate(double estimate) { in setEstimate() argument
95 this.estimate = estimate; in setEstimate()
102 return estimate; in getEstimate()
DEstimator.java56 void estimate(EstimationProblem problem) throws EstimationException; in estimate() method
/external/skqp/include/private/
DSkFloatingPoint.h149 float estimate; in sk_float_rsqrt_portable() local
150 memcpy(&estimate, &i, 4); in sk_float_rsqrt_portable()
153 const float estimate_sq = estimate*estimate; in sk_float_rsqrt_portable()
154 estimate *= 0.703952253f*(2.38924456f-x*estimate_sq); in sk_float_rsqrt_portable()
155 return estimate; in sk_float_rsqrt_portable()
173 float32x2_t estimate = vrsqrte_f32(xx); in sk_float_rsqrt()
176 const float32x2_t estimate_sq = vmul_f32(estimate, estimate); in sk_float_rsqrt()
177 estimate = vmul_f32(estimate, vrsqrts_f32(xx, estimate_sq)); in sk_float_rsqrt()
178 return vget_lane_f32(estimate, 0); // 1 will work fine too; the answer's in both places. in sk_float_rsqrt()
/external/skia/include/private/
DSkFloatingPoint.h149 float estimate; in sk_float_rsqrt_portable() local
150 memcpy(&estimate, &i, 4); in sk_float_rsqrt_portable()
153 const float estimate_sq = estimate*estimate; in sk_float_rsqrt_portable()
154 estimate *= 0.703952253f*(2.38924456f-x*estimate_sq); in sk_float_rsqrt_portable()
155 return estimate; in sk_float_rsqrt_portable()
173 float32x2_t estimate = vrsqrte_f32(xx); in sk_float_rsqrt()
176 const float32x2_t estimate_sq = vmul_f32(estimate, estimate); in sk_float_rsqrt()
177 estimate = vmul_f32(estimate, vrsqrts_f32(xx, estimate_sq)); in sk_float_rsqrt()
178 return vget_lane_f32(estimate, 0); // 1 will work fine too; the answer's in both places. in sk_float_rsqrt()
/external/boringssl/src/crypto/fipsmodule/bn/
Dsqrt.c428 BIGNUM *estimate, *tmp, *delta, *last_delta, *tmp2; in BN_sqrt() local
442 estimate = BN_CTX_get(ctx); in BN_sqrt()
444 estimate = out_sqrt; in BN_sqrt()
449 if (estimate == NULL || tmp == NULL || last_delta == NULL || delta == NULL) { in BN_sqrt()
455 if (!BN_lshift(estimate, BN_value_one(), BN_num_bits(in)/2)) { in BN_sqrt()
463 if (!BN_div(tmp, NULL, in, estimate, ctx) || in BN_sqrt()
464 !BN_add(tmp, tmp, estimate) || in BN_sqrt()
465 !BN_rshift1(estimate, tmp) || in BN_sqrt()
467 !BN_sqr(tmp, estimate, ctx) || in BN_sqrt()
497 if (ok && out_sqrt == in && !BN_copy(out_sqrt, estimate)) { in BN_sqrt()
/external/v8/tools/perf/
Dstatistics-for-json.R83 mww$conf.int[1], mww$conf.int[2], mww$estimate);
85 unname(mww$estimate), unname(mww$p.value),
92 t$conf.int[1], t$conf.int[2], t$estimate[1]-t$estimate[2]);
/external/swiftshader/third_party/LLVM/lib/Target/CellSPU/
DSPUMathInstr.td63 // Reciprocal estimate and interpolation
65 // Division estimate
79 // Reciprocal estimate and interpolation
81 // Division estimate
/external/libxcam/plugins/smart/dvs/libdvs/
Dstabilizer.cpp115 …return motionEstimator_.dynamicCast<KeypointBasedMotionEstimator>()->estimate(ugrayImage0, ugrayIm… in estimateMotion()
117 …return motionEstimator_.dynamicCast<KeypointBasedMotionEstimator>()->estimate(at(curPos_ - 1, fram… in estimateMotion()
233 …return motionEstimator_.dynamicCast<KeypointBasedMotionEstimator>()->estimate(ugrayImage0, ugrayIm… in estimateMotion()
235 …return motionEstimator_.dynamicCast<KeypointBasedMotionEstimator>()->estimate(at(curPos_ - 1, fram… in estimateMotion()
/external/skqp/tests/
DMathTest.cpp320 float estimate = rsqrt(input); in test_rsqrt() local
321 float relativeError = sk_float_abs(exact - estimate)/exact; in test_rsqrt()
330 float estimate = rsqrt(input); in test_rsqrt() local
331 float relativeError = sk_float_abs(exact - estimate)/exact; in test_rsqrt()
340 float estimate = rsqrt(input); in test_rsqrt() local
341 float relativeError = sk_float_abs(exact - estimate)/exact; in test_rsqrt()
/external/skia/tests/
DMathTest.cpp320 float estimate = rsqrt(input); in test_rsqrt() local
321 float relativeError = sk_float_abs(exact - estimate)/exact; in test_rsqrt()
330 float estimate = rsqrt(input); in test_rsqrt() local
331 float relativeError = sk_float_abs(exact - estimate)/exact; in test_rsqrt()
340 float estimate = rsqrt(input); in test_rsqrt() local
341 float relativeError = sk_float_abs(exact - estimate)/exact; in test_rsqrt()
/external/tensorflow/tensorflow/core/framework/
Dcost_graph.proto58 // Analytical estimate of the computational cost of this node, in
62 // Analytical estimate of the memory access cost of this node, in
/external/syslinux/com32/lua/src/
Dlgc.c913 static void setpause (global_State *g, l_mem estimate) { in setpause() argument
915 estimate = estimate / PAUSEADJ; /* adjust 'estimate' */ in setpause()
916 threshold = (g->gcpause < MAX_LMEM / estimate) /* overflow? */ in setpause()
917 ? estimate * g->gcpause /* no overflow */ in setpause()
1125 lu_mem estimate = g->GCestimate; in generationalcollection() local
1128 if (gettotalbytes(g) > (estimate / 100) * g->gcmajorinc) in generationalcollection()
1131 g->GCestimate = estimate; /* keep estimate from last major coll. */ in generationalcollection()
/external/llvm/test/CodeGen/ARM/
Dvcvt-cost.ll1 ; We currently estimate the cost of sext/zext/trunc v8(v16)i32 <-> v8(v16)i8
19 ;; We currently estimate the cost of this instruction as expensive. If lowering
66 ;; We currently estimate the cost of this instruction as expensive. If lowering
/external/tensorflow/tensorflow/docs_src/api_guides/python/
Dcontrib.bayesflow.monte_carlo.md22 Practitioners of Bayesian statistics often find themselves wanting to estimate
34 For example, the naive importance sample estimate `E_q[f(Z) p(Z) / q(Z)]`
/external/swiftshader/third_party/subzero/pydir/
Dbisection-tool.py19 def estimate(self, included_ranges): member in Runner
75 + str(self.estimate(included_ranges))
/external/tensorflow/tensorflow/core/grappler/optimizers/
Dstatic_schedule.cc46 Costs::NanoSeconds estimate = in PredictExecutionTime() local
50 return std::max(estimate, Costs::NanoSeconds(1)); in PredictExecutionTime()
/external/dng_sdk/source/
Ddng_bad_pixels.cpp1022 uint32 estimate = (total + (count >> 1)) / count; in FixIsolatedPixel() local
1024 p2 [2] = (uint16) estimate; in FixIsolatedPixel()
1100 uint32 estimate = (total + (count >> 1)) / count; in FixClusteredPixel() local
1102 p [0] = (uint16) estimate; in FixClusteredPixel()
1510 uint32 estimate = (total + (count >> 1)) / count; in FixSingleColumn() local
1512 p4 [4] = (uint16) Pin_uint32 (lower, estimate, upper); in FixSingleColumn()
1684 uint32 estimate = (total + (count >> 1)) / count; in FixClusteredRect() local
1686 p [0] = (uint16) estimate; in FixClusteredRect()
/external/tensorflow/tensorflow/contrib/factorization/g3doc/
Dgmm.md8 Typically an EM (Expectation Maximization) algorithm is used to estimate these
/external/python/cpython3/Doc/library/
Dstatistics.rst107 The sample mean gives an unbiased estimate of the true population mean,
230 interpolation is used to estimate it:
318 estimate the variance from a sample, the :func:`variance` function is usually
366 unbiased estimate of the population variance.
435 should be an unbiased estimate of the true population variance.
/external/flac/libFLAC/
Dstream_encoder.c3642 unsigned estimate in spotcheck_subframe_estimate_() argument
3659 if(estimate != actual) in spotcheck_subframe_estimate_()
3660 …rame_number, FLAC__SubframeTypeString[subframe->type], estimate, actual, (int)actual-(int)estimate in spotcheck_subframe_estimate_()
3674 unsigned estimate; in evaluate_constant_subframe_() local
3678estimate = FLAC__SUBFRAME_ZERO_PAD_LEN + FLAC__SUBFRAME_TYPE_LEN + FLAC__SUBFRAME_WASTED_BITS_FLAG… in evaluate_constant_subframe_()
3681 spotcheck_subframe_estimate_(encoder, blocksize, subframe_bps, subframe, estimate); in evaluate_constant_subframe_()
3686 return estimate; in evaluate_constant_subframe_()
3708 unsigned i, residual_bits, estimate; in evaluate_fixed_subframe_() local
3741estimate = FLAC__SUBFRAME_ZERO_PAD_LEN + FLAC__SUBFRAME_TYPE_LEN + FLAC__SUBFRAME_WASTED_BITS_FLAG… in evaluate_fixed_subframe_()
3744 spotcheck_subframe_estimate_(encoder, blocksize, subframe_bps, subframe, estimate); in evaluate_fixed_subframe_()
[all …]
/external/llvm/test/Transforms/LoopUnroll/
Dfull-unroll-heuristics-geps.ll6 ; our estimate, so that we might decide to unroll even a simple memcpy loop.
/external/v8/src/
Dbignum-dtoa.cc372 double estimate = in EstimatePower() local
374 return static_cast<int>(estimate); in EstimatePower()
/external/llvm/test/CodeGen/PowerPC/
Dframe-size.ll10 ; Check that the RS spill slot has been allocated (because the estimate
/external/autotest/client/profilers/powertop/src/po/
Dnl.po233 msgid "Power usage (5 minute ACPI estimate) : %5.1f W (%3.1f hours left)"
238 msgid "Power usage (ACPI estimate): %3.1fW (%3.1f hours)"
498 msgid "no ACPI power usage estimate available"
503 msgid "no power usage estimate available"
/external/webrtc/webrtc/modules/video_coding/test/
DplotReceiveTrace.m7 …lete frame timestamp 1870514263 frame type 1 frame size 7862 at time 19965, jitter estimate was 130
89 …d complete frame timestamp %lu frame type %u frame size %*u at time %lu, jitter estimate was %lu');

123456