HomeSort by relevance Sort by last modified time
    Searched refs:estimate (Results 1 - 25 of 85) sorted by null

1 2 3 4

  /external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/
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 new estimate for the paramete
    [all...]
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
GaussNewtonEstimator.java 161 public void estimate(EstimationProblem problem) method in class:GaussNewtonEstimator
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/
reloc-estimate-1.d 2 #source: reloc-estimate-1a.s
3 #source: reloc-estimate-1b.s
4 #ld: -shared -T reloc-estimate-1.ld
got-page-3.d 10 # with a page estimate of 10. Thus the first page entry has offset
  /external/skia/include/private/
SkFloatingPoint.h 108 // Get initial estimate.
112 float estimate; local
113 memcpy(&estimate, &i, 4);
116 const float estimate_sq = estimate*estimate;
117 estimate *= 0.703952253f*(2.38924456f-x*estimate_sq);
118 return estimate;
134 // Get initial estimate.
136 float32x2_t estimate = vrsqrte_f32(xx);
139 const float32x2_t estimate_sq = vmul_f32(estimate, estimate)
    [all...]
  /external/boringssl/src/crypto/fipsmodule/bn/
sqrt.c 434 BIGNUM *estimate, *tmp, *delta, *last_delta, *tmp2; local
448 estimate = BN_CTX_get(ctx);
450 estimate = out_sqrt;
455 if (estimate == NULL || tmp == NULL || last_delta == NULL || delta == NULL) {
460 /* We estimate that the square root of an n-bit number is 2^{n/2}. */
461 if (!BN_lshift(estimate, BN_value_one(), BN_num_bits(in)/2)) {
465 /* This is Newton's method for finding a root of the equation |estimate|^2 -
468 /* |estimate| = 1/2 * (|estimate| + |in|/|estimate|) */
    [all...]
  /frameworks/base/core/java/android/view/
VelocityTracker.java 256 * Gets an estimate of the X position of the pointer at the specified time point.
261 return estimate(time, xCoeff);
265 * Gets an estimate of the Y position of the pointer at the specified time point.
270 return estimate(time, yCoeff);
291 private float estimate(float time, float[] c) { method in class:VelocityTracker.Estimator
  /frameworks/base/libs/common_time/
common_clock_service.h 43 virtual status_t getEstimatedError(int32_t* estimate);
common_clock_service.cpp 75 status_t CommonClockService::getEstimatedError(int32_t* estimate) {
76 *estimate = mTimeServer.getEstimatedError();
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/include/gcc/darwin/4.2/
ppc_intrinsics.h 82 * __fres - Floating Reciprocal Estimate
84 * __frsqrte - Floating Reciprocal Square Root Estimate
85 * __frsqrtes - Floating Reciprocal Square Root Estimate Single
723 * __fres - Floating Reciprocal Estimate
734 float estimate; local
736 /* outputs: */ : "=f" (estimate)
738 return estimate;
756 * __frsqrte - Floating Reciprocal Square Root Estimate
764 double estimate; local
767 /* outputs: */ : "=f" (estimate)
    [all...]
  /frameworks/av/include/common_time/
ICommonClock.h 51 // a reserved invalid error estimate
81 virtual status_t getEstimatedError(int32_t* estimate) = 0;
  /libcore/ojluni/src/main/java/java/util/stream/
StreamSpliterators.java 221 // Use the estimate of the wrapped spliterator
245 // with an exact size to an estimate for a sub-split, for example
247 // but for sub-splits only an estimate is known
642 // thereby ensuring the size estimate decreases.
1328 long estimate; field in class:StreamSpliterators.AbstractWrappingSpliterator.InfiniteSupplyingSpliterator
    [all...]
  /art/runtime/
oat.cc 38 size_t estimate = 0U; local
43 estimate += it->first.length() + 1;
44 estimate += it->second.length() + 1;
47 return sizeof(OatHeader) + estimate;
54 // Estimate size of optional data.
  /external/swiftshader/third_party/subzero/pydir/
bisection-tool.py 19 def estimate(self, included_ranges): member in class:Runner
75 + str(self.estimate(included_ranges))
  /packages/apps/Settings/tests/robotests/src/com/android/settings/fuelgauge/
BatteryInfoTest.java 260 private BatteryInfo getBatteryInfo(boolean charging, boolean enhanced, boolean estimate) {
261 if (charging && estimate) {
269 estimate ? 1000 : 0 /* drainTimeUs */, false);
279 info = getBatteryInfo(false /* charging */, false /* enhanced */, false /* estimate */);
282 info = getBatteryInfo(false /* charging */, false /* enhanced */, true /* estimate */);
285 info = getBatteryInfo(false /* charging */, true /* enhanced */, false /* estimate */);
288 info = getBatteryInfo(false /* charging */, true /* enhanced */, true /* estimate */);
291 info = getBatteryInfo(true /* charging */, false /* enhanced */, false /* estimate */);
294 info = getBatteryInfo(true /* charging */, false /* enhanced */, true /* estimate */);
297 info = getBatteryInfo(true /* charging */, true /* enhanced */, false /* estimate */);
    [all...]
  /external/webrtc/webrtc/modules/video_coding/test/
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');
  /prebuilts/go/darwin-x86/src/math/big/
example_test.go 104 // an initial estimate for sqrt(2), and then iterate:
115 // Use 1 as the initial estimate.
  /prebuilts/go/linux-x86/src/math/big/
example_test.go 104 // an initial estimate for sqrt(2), and then iterate:
115 // Use 1 as the initial estimate.
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
lgc.c 913 static void setpause (global_State *g, l_mem estimate) {
915 estimate = estimate / PAUSEADJ; /* adjust 'estimate' */
916 threshold = (g->gcpause < MAX_LMEM / estimate) /* overflow? */
917 ? estimate * g->gcpause /* no overflow */
1036 return work; /* estimate of memory marked by 'atomic' */
1125 lu_mem estimate = g->GCestimate; local
    [all...]
  /external/dng_sdk/source/
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
    [all...]
  /external/skia/third_party/lua/src/
lgc.c 906 static void setpause (global_State *g, l_mem estimate) {
908 estimate = estimate / PAUSEADJ; /* adjust 'estimate' */
909 threshold = (g->gcpause < MAX_LMEM / estimate) /* overflow? */
910 ? estimate * g->gcpause /* no overflow */
1029 return work; /* estimate of memory marked by 'atomic' */
1056 g->GCestimate += work; /* estimate of total memory traversed */
1118 lu_mem estimate = g->GCestimate; local
    [all...]
  /external/syslinux/com32/lua/src/
lgc.c 913 static void setpause (global_State *g, l_mem estimate) {
915 estimate = estimate / PAUSEADJ; /* adjust 'estimate' */
916 threshold = (g->gcpause < MAX_LMEM / estimate) /* overflow? */
917 ? estimate * g->gcpause /* no overflow */
1036 return work; /* estimate of memory marked by 'atomic' */
1125 lu_mem estimate = g->GCestimate; local
    [all...]
  /external/v8/src/
bignum-dtoa.cc 372 double estimate = local
374 return static_cast<int>(estimate);
  /prebuilts/go/darwin-x86/src/runtime/pprof/internal/protopprof/
protomemprofile.go 62 // requests in a program. We estimate the unsampled value by dividing

Completed in 938 milliseconds

1 2 3 4