Home
last modified time | relevance | path

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

/third_party/skia/include/private/
H A DSkFloatingPoint.h188 // Get initial estimate. in sk_float_rsqrt_portable()
192 float estimate; in sk_float_rsqrt_portable() local
193 memcpy(&estimate, &i, 4); in sk_float_rsqrt_portable()
196 const float estimate_sq = estimate*estimate; in sk_float_rsqrt_portable()
197 estimate *= 0.703952253f*(2.38924456f-x*estimate_sq); in sk_float_rsqrt_portable()
198 return estimate; in sk_float_rsqrt_portable()
214 // Get initial estimate. in sk_float_rsqrt()
216 float32x2_t estimate = vrsqrte_f32(xx); in sk_float_rsqrt()
219 const float32x2_t estimate_sq = vmul_f32(estimate, estimat in sk_float_rsqrt()
[all...]
/third_party/node/deps/v8/src/heap/
H A Dmemory-measurement.cc30 void AddTotal(size_t estimate, size_t lower_bound, size_t upper_bound) { in AddTotal() argument
32 NewResult(estimate, lower_bound, upper_bound)); in AddTotal()
34 void AddCurrent(size_t estimate, size_t lower_bound, size_t upper_bound) { in AddCurrent() argument
37 NewResult(estimate, lower_bound, upper_bound)); in AddCurrent()
39 void AddOther(size_t estimate, size_t lower_bound, size_t upper_bound) { in AddOther() argument
41 other_.push_back(NewResult(estimate, lower_bound, upper_bound)); in AddOther()
57 Handle<JSObject> NewResult(size_t estimate, size_t lower_bound, in NewResult() argument
60 Handle<Object> estimate_obj = NewNumber(estimate); in NewResult()
/third_party/node/deps/v8/src/objects/
H A Dshared-function-info.cc590 int estimate = literal->expected_property_count(); in get_property_estimate_from_literal() local
594 estimate += expected_nof_properties(); in get_property_estimate_from_literal()
596 return estimate; in get_property_estimate_from_literal()
601 // Limit actual estimate to fit in a 8 bit field, we will never allocate in UpdateExpectedNofPropertiesFromEstimate()
604 int estimate = get_property_estimate_from_literal(literal); in UpdateExpectedNofPropertiesFromEstimate() local
605 set_expected_nof_properties(std::min(estimate, kMaxUInt8)); in UpdateExpectedNofPropertiesFromEstimate()
614 int estimate = get_property_estimate_from_literal(literal); in UpdateAndFinalizeExpectedNofPropertiesFromEstimate() local
618 if (estimate == 0) estimate = 2; in UpdateAndFinalizeExpectedNofPropertiesFromEstimate()
620 // Limit actual estimate t in UpdateAndFinalizeExpectedNofPropertiesFromEstimate()
[all...]
/third_party/pulseaudio/src/pulsecore/
H A Dtime-smoother.c42 * Basically, we estimate the gradient of received clock samples in a
44 * regression. With that info we estimate the remote time in
277 static void estimate(pa_smoother *s, pa_usec_t x, pa_usec_t *y, double *deriv) { in estimate() function
286 * to be on track again, thus just linearly estimate */ in estimate()
361 /* First, we calculate the position we'd estimate for x, so that in pa_smoother_put()
363 estimate(s, x, &ney, &nde); in pa_smoother_put()
405 estimate(s, x, &y, NULL); in pa_smoother_get()
488 estimate(s, x, &ney, &nde); in pa_smoother_translate()
/third_party/skia/tests/
H A DMathTest.cpp262 float estimate = rsqrt(input); in test_rsqrt() local
263 float relativeError = sk_float_abs(exact - estimate)/exact; in test_rsqrt()
272 float estimate = rsqrt(input); in test_rsqrt() local
273 float relativeError = sk_float_abs(exact - estimate)/exact; in test_rsqrt()
282 float estimate = rsqrt(input); in test_rsqrt() local
283 float relativeError = sk_float_abs(exact - estimate)/exact; in test_rsqrt()
/third_party/skia/third_party/externals/dng_sdk/source/
H A 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()
1230 // In case there is some green split, make an estimate of in FixSingleColumn()
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()
/third_party/node/deps/v8/src/bigint/
H A Dbigint-internal.h85 void AddWorkEstimate(uintptr_t estimate) { in AddWorkEstimate() argument
86 work_estimate_ += estimate; in AddWorkEstimate()
/third_party/icu/vendor/double-conversion/upstream/double-conversion/
H A Dbignum-dtoa.cc411 double estimate = ceil((exponent + kSignificandSize - 1) * k1Log10 - 1e-10); in EstimatePower() local
412 return static_cast<int>(estimate); in EstimatePower()
/third_party/icu/icu4c/source/i18n/
H A Ddouble-conversion-bignum-dtoa.cpp425 double estimate = ceil((exponent + kSignificandSize - 1) * k1Log10 - 1e-10); in EstimatePower() local
426 return static_cast<int>(estimate); in EstimatePower()
/third_party/node/deps/icu-small/source/i18n/
H A Ddouble-conversion-bignum-dtoa.cpp425 double estimate = ceil((exponent + kSignificandSize - 1) * k1Log10 - 1e-10); in EstimatePower() local
426 return static_cast<int>(estimate); in EstimatePower()
/third_party/node/deps/v8/src/base/numbers/
H A Dbignum-dtoa.cc356 double estimate = in EstimatePower() local
358 return static_cast<int>(estimate); in EstimatePower()
/third_party/skia/third_party/externals/icu/source/i18n/
H A Ddouble-conversion-bignum-dtoa.cpp425 double estimate = ceil((exponent + kSignificandSize - 1) * k1Log10 - 1e-10); in EstimatePower() local
426 return static_cast<int>(estimate); in EstimatePower()
/third_party/pulseaudio/speex/libspeexdsp/
H A Decho_diagnostic.m52 printf ('Drift estimate is %f%% (%d samples)\n', 100*drift, b1-b2);
/third_party/astc-encoder/Source/
H A Dastcenc_vecmathlib.h388 vfloat4 estimate = exp2(log2(x) * y); in pow() local
391 return select(estimate, vfloat4(1.0f), zero_mask); in pow()
/third_party/mesa3d/src/gallium/drivers/iris/
H A Diris_batch.h206 void iris_batch_maybe_flush(struct iris_batch *batch, unsigned estimate);
H A Diris_batch.c626 iris_batch_maybe_flush(struct iris_batch *batch, unsigned estimate) in iris_batch_maybe_flush() argument
629 iris_batch_bytes_used(batch) + estimate >= BATCH_SZ) { in iris_batch_maybe_flush()
/third_party/mesa3d/src/gallium/drivers/crocus/
H A Dcrocus_batch.h189 void crocus_batch_maybe_flush(struct crocus_batch *batch, unsigned estimate);
H A Dcrocus_batch.c595 crocus_batch_maybe_flush(struct crocus_batch *batch, unsigned estimate) in crocus_batch_maybe_flush() argument
598 crocus_batch_bytes_used(batch) + estimate >= BATCH_SZ) { in crocus_batch_maybe_flush()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/
H A Dcommon.c1223 * It's possible to estimate RCPI based on RSSI in dBm. This calculation will
/third_party/python/Objects/
H A Dbytearrayobject.c2392 "Private method returning an estimate of len(list(it)).");
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/
H A Dcommon.c1288 * It's possible to estimate RCPI based on RSSI in dBm. This calculation will
/third_party/node/deps/v8/src/execution/arm64/
H A Dsimulator-logic-arm64.cc3954 uint64_t estimate = bit_cast<uint64_t>(recip_sqrt_estimate(scaled)); in FPRecipSqrtEstimate() local
3958 uint32_t est_bits = static_cast<uint32_t>(Bits(estimate, 51, 29)); in FPRecipSqrtEstimate()
3961 return double_pack(0, Bits(result_exp, 10, 0), Bits(estimate, 51, 0)); in FPRecipSqrtEstimate()
4068 double estimate = recip_estimate(scaled); in FPRecipEstimate() local
4070 fraction = double_mantissa(estimate); in FPRecipEstimate()
/third_party/vixl/src/aarch64/
H A Dlogic-aarch64.cc6164 uint64_t estimate = DoubleToRawbits(recip_sqrt_estimate(scaled));
6168 uint16_t est_bits = static_cast<uint16_t>(Bits(estimate, 51, 42));
6172 uint32_t est_bits = static_cast<uint32_t>(Bits(estimate, 51, 29));
6176 return DoublePack(0, Bits(result_exp, 10, 0), Bits(estimate, 51, 0));
6301 double estimate = recip_estimate(scaled);
6303 fraction = DoubleMantissa(estimate);
/third_party/node/deps/v8/src/wasm/
H A Dwasm-objects.cc81 size_t estimate = in EstimateNativeAllocationsSize() local
87 return estimate; in EstimateNativeAllocationsSize()

Completed in 43 milliseconds