Home
last modified time | relevance | path

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

1234

/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
DGaussNewtonEstimator.java161 public void estimate(EstimationProblem problem) in estimate() method in GaussNewtonEstimator
DAbstractEstimator.java315 public abstract void estimate(EstimationProblem problem) in estimate() method in AbstractEstimator
/external/skia/include/private/
DSkFloatingPoint.h112 float estimate; in sk_float_rsqrt_portable() local
113 memcpy(&estimate, &i, 4); in sk_float_rsqrt_portable()
116 const float estimate_sq = estimate*estimate; in sk_float_rsqrt_portable()
117 estimate *= 0.703952253f*(2.38924456f-x*estimate_sq); in sk_float_rsqrt_portable()
118 return estimate; in sk_float_rsqrt_portable()
136 float32x2_t estimate = vrsqrte_f32(xx); in sk_float_rsqrt()
139 const float32x2_t estimate_sq = vmul_f32(estimate, estimate); in sk_float_rsqrt()
140 estimate = vmul_f32(estimate, vrsqrts_f32(xx, estimate_sq)); in sk_float_rsqrt()
141 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/bn/
Dsqrt.c432 BIGNUM *estimate, *tmp, *delta, *last_delta, *tmp2; in BN_sqrt() local
446 estimate = BN_CTX_get(ctx); in BN_sqrt()
448 estimate = out_sqrt; in BN_sqrt()
453 if (estimate == NULL || tmp == NULL || last_delta == NULL || delta == NULL) { in BN_sqrt()
459 if (!BN_lshift(estimate, BN_value_one(), BN_num_bits(in)/2)) { in BN_sqrt()
467 if (!BN_div(tmp, NULL, in, estimate, ctx) || in BN_sqrt()
468 !BN_add(tmp, tmp, estimate) || in BN_sqrt()
469 !BN_rshift1(estimate, tmp) || in BN_sqrt()
471 !BN_sqr(tmp, estimate, ctx) || in BN_sqrt()
501 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/skia/tests/
DMathTest.cpp405 float estimate = rsqrt(input); in test_rsqrt() local
406 float relativeError = sk_float_abs(exact - estimate)/exact; in test_rsqrt()
415 float estimate = rsqrt(input); in test_rsqrt() local
416 float relativeError = sk_float_abs(exact - estimate)/exact; in test_rsqrt()
425 float estimate = rsqrt(input); in test_rsqrt() local
426 float relativeError = sk_float_abs(exact - estimate)/exact; in test_rsqrt()
/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/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/skia/third_party/lua/src/
Dlgc.c906 static void setpause (global_State *g, l_mem estimate) { in setpause() argument
908 estimate = estimate / PAUSEADJ; /* adjust 'estimate' */ in setpause()
909 threshold = (g->gcpause < MAX_LMEM / estimate) /* overflow? */ in setpause()
910 ? estimate * g->gcpause /* no overflow */ in setpause()
1118 lu_mem estimate = g->GCestimate; in generationalcollection() local
1121 if (gettotalbytes(g) > (estimate / 100) * g->gcmajorinc) in generationalcollection()
1124 g->GCestimate = estimate; /* keep estimate from last major coll. */ in generationalcollection()
/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/llvm/test/Transforms/LoopUnroll/
Dfull-unroll-heuristics-geps.ll6 ; our estimate, so that we might decide to unroll even a simple memcpy loop.
/external/flac/libFLAC/
Dstream_encoder.c3646 unsigned estimate in spotcheck_subframe_estimate_() argument
3663 if(estimate != actual) in spotcheck_subframe_estimate_()
3664 …rame_number, FLAC__SubframeTypeString[subframe->type], estimate, actual, (int)actual-(int)estimate in spotcheck_subframe_estimate_()
3678 unsigned estimate; in evaluate_constant_subframe_() local
3682estimate = FLAC__SUBFRAME_ZERO_PAD_LEN + FLAC__SUBFRAME_TYPE_LEN + FLAC__SUBFRAME_WASTED_BITS_FLAG… in evaluate_constant_subframe_()
3685 spotcheck_subframe_estimate_(encoder, blocksize, subframe_bps, subframe, estimate); in evaluate_constant_subframe_()
3690 return estimate; in evaluate_constant_subframe_()
3712 unsigned i, residual_bits, estimate; in evaluate_fixed_subframe_() local
3745estimate = FLAC__SUBFRAME_ZERO_PAD_LEN + FLAC__SUBFRAME_TYPE_LEN + FLAC__SUBFRAME_WASTED_BITS_FLAG… in evaluate_fixed_subframe_()
3748 spotcheck_subframe_estimate_(encoder, blocksize, subframe_bps, subframe, estimate); in evaluate_fixed_subframe_()
[all …]
/external/llvm/test/CodeGen/PowerPC/
Dframe-size.ll10 ; Check that the RS spill slot has been allocated (because the estimate
/external/v8/src/
Dbignum-dtoa.cc372 double estimate = in EstimatePower() local
374 return static_cast<int>(estimate); in EstimatePower()
/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"
Dru.po245 msgid "Power usage (5 minute ACPI estimate) : %5.1f W (%3.1f hours left)"
252 msgid "Power usage (ACPI estimate): %3.1fW (%3.1f hours)"
598 msgid "no ACPI power usage estimate available"
603 msgid "no power usage estimate available"
Dja.po240 msgid "Power usage (5 minute ACPI estimate) : %5.1f W (%3.1f hours left)"
245 msgid "Power usage (ACPI estimate): %3.1fW (%3.1f hours)"
585 msgid "no ACPI power usage estimate available"
590 msgid "no power usage estimate available"
Dit.po235 msgid "Power usage (5 minute ACPI estimate) : %5.1f W (%3.1f hours left)"
240 msgid "Power usage (ACPI estimate): %3.1fW (%3.1f hours)"
555 msgid "no ACPI power usage estimate available"
560 msgid "no power usage estimate available"
Dzh.po171 msgid "no ACPI power usage estimate available"
176 msgid "Power usage (ACPI estimate): %3.1fW (%3.1f hours)"
186 msgid "Power usage (5 minute ACPI estimate) : %5.1f W (%3.1f hours left)"
196 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');
/external/llvm/test/CodeGen/AMDGPU/
Dpromote-alloca-padding-size-estimate.ll3 ; This shows that the amount of LDS estimate is sensitive to the order
12 ; The padding estimate heuristic used by the promote alloca pass
/external/llvm/test/CodeGen/X86/
Drecip-fastmath.ll7 ; we should generate the estimate sequence.

1234