Searched refs:accuracy (Results 1 - 25 of 46) sorted by relevance

12

/external/apache-commons-math/src/main/java/org/apache/commons/math/
H A DConvergingAlgorithm.java30 * be moved to a new {@code IterativeAlgorithm}. The concept of "accuracy" is
68 * Set the absolute accuracy.
71 * -10..-0.1 and +0.1..+10 can be found with a reasonable accuracy. If the
76 * accuracy, but clients should not rely on this.</p>
78 * @param accuracy the accuracy.
79 * @throws IllegalArgumentException if the accuracy can't be achieved by
82 void setAbsoluteAccuracy(double accuracy); argument
85 * Get the actual absolute accuracy.
87 * @return the accuracy
112 setRelativeAccuracy(double accuracy) argument
[all...]
H A DConvergingAlgorithmImpl.java52 * Construct an algorithm with given iteration count and accuracy.
89 public void setAbsoluteAccuracy(double accuracy) { argument
90 absoluteAccuracy = accuracy;
119 public void setRelativeAccuracy(double accuracy) { argument
120 relativeAccuracy = accuracy;
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowCriteria.java10 private int accuracy = Criteria.NO_REQUIREMENT; field in class:ShadowCriteria
18 accuracy = criteria.getAccuracy();
24 return accuracy;
28 public void setAccuracy(int accuracy) { argument
29 this.accuracy = accuracy;
49 if (criteria.getAccuracy() == accuracy && criteria.getPowerRequirement() == powerRequirement) {
H A DShadowLocation.java22 private float accuracy; field in class:ShadowLocation
59 accuracy = l.getAccuracy();
92 return accuracy;
96 public void setAccuracy(float accuracy) { argument
97 this.accuracy = accuracy;
103 this.accuracy = 0.0f;
213 if (accuracy != that.accuracy) return false;
227 temp = accuracy !
[all...]
H A DShadowLocationManager.java135 * NB: Gps is considered the best provider for fine accuracy and high power consumption, network is considered the
136 * best provider for coarse accuracy and low power consumption.
157 int accuracy = criteria.getAccuracy();
170 } else if (criteriaListItem.getAccuracy() == accuracy) {
179 if (provider.equals(LocationManager.NETWORK_PROVIDER) && (accuracy == Criteria.ACCURACY_COARSE || powerRequirement == Criteria.POWER_LOW)) {
181 } else if (provider.equals(LocationManager.GPS_PROVIDER) && accuracy == Criteria.ACCURACY_FINE && powerRequirement != Criteria.POWER_LOW) {
/external/valgrind/memcheck/tests/
H A Dvcpu_fbench.stdout.exp1 Ready to begin John Walker's floating point accuracy
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/interpolation/
H A DLoessInterpolator.java54 * Default value for accuracy.
85 private final double accuracy; field in class:LoessInterpolator
91 * and an accuracy of {#link #DEFAULT_ACCURACY}.
98 this.accuracy = DEFAULT_ACCURACY;
130 * with given bandwidth, number of robustness iterations and accuracy.
142 * @param accuracy If the median residual at a certain robustness iteration
149 public LoessInterpolator(double bandwidth, int robustnessIters, double accuracy) throws MathException { argument
159 this.accuracy = accuracy;
301 if (FastMath.sqrt(FastMath.abs(meanXSquared - meanX * meanX)) < accuracy) {
[all...]
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/tsp/
H A DTSTInfoTest.java50 int[] accuracy = new int[] { 1, 0, 0 };
61 genTime, accuracy, Boolean.FALSE, nonce, tsa, exts);
76 assertTrue("Decoded accuracy is incorrect", Arrays.equals(accuracy,
H A DTimeStampRespTest.java65 // accuracy is 1 second
66 int[] accuracy = new int[] { 1, 0, 0 };
77 genTime, accuracy, Boolean.FALSE, nonce, tsa, exts);
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/
H A DUnivariateRealSolver.java35 * Set the function value accuracy.
43 * @param accuracy the accuracy.
44 * @throws IllegalArgumentException if the accuracy can't be achieved by
47 void setFunctionValueAccuracy(double accuracy); argument
50 * Get the actual function value accuracy.
51 * @return the accuracy
56 * Reset the actual function accuracy to the default.
H A DUnivariateRealSolverImpl.java63 * Construct a solver with given iteration count and accuracy.
89 * Construct a solver with given iteration count and accuracy.
125 public void setFunctionValueAccuracy(final double accuracy) { argument
126 functionValueAccuracy = accuracy;
/external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
H A DAppRTCProximitySensor.java92 public final void onAccuracyChanged(Sensor sensor, int accuracy) { argument
95 if (accuracy == SensorManager.SENSOR_STATUS_UNRELIABLE) {
122 + "accuracy=" + event.accuracy
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/
H A DMultiStartUnivariateRealOptimizer.java147 public void setAbsoluteAccuracy(double accuracy) { argument
148 optimizer.setAbsoluteAccuracy(accuracy);
162 public void setRelativeAccuracy(double accuracy) { argument
163 optimizer.setRelativeAccuracy(accuracy);
/external/v8/test/mjsunit/
H A Dsin-cos.js72 var accuracy = 50; variable
73 for (var i = 1; i < accuracy; i++) {
91 for (var i = 1; i < accuracy; i += 2) {
104 for (var i = 2; i < accuracy; i += 2) {
/external/google-breakpad/src/common/mac/testing/
H A DGTMSenTestCase.h473 /*" Generates a failure when a1 is not equal to a2 within + or - accuracy is false.
480 _{accuracy The maximum difference between a1 and a2 for these values to be
487 #define STInternalAssertEqualGLKVectorsOrMatrices(a1, a2, accuracy, description, ...) \
497 __typeof__(accuracy) accuracyvalue = (accuracy); \
530 #define STAssertEqualGLKVectors(a1, a2, accuracy, description, ...) \
531 STInternalAssertEqualGLKVectorsOrMatrices(a1, a2, accuracy, description, ##__VA_ARGS__)
533 #define STAssertEqualGLKMatrices(a1, a2, accuracy, description, ...) \
534 STInternalAssertEqualGLKVectorsOrMatrices(a1, a2, accuracy, description, ##__VA_ARGS__)
536 #define STAssertEqualGLKQuaternions(a1, a2, accuracy, descriptio
[all...]
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
H A DSensorManagerTest.java74 public void onAccuracyChanged(Sensor sensor, int accuracy) { argument
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/
H A DPhysicsSpace.java96 private float accuracy = 1f / 60f; field in class:PhysicsSpace
348 stepSimulation(physicsSpaceId, time, maxSteps, accuracy);
351 private native void stepSimulation(long space, float time, int maxSteps, float accuracy); argument
668 * each frame but is determined by the accuracy of the physics space.
821 * when the physics has the default accuracy of 60 fps. Note that setting this
830 * get the current accuracy of the physics computation
831 * @return the current accuracy
834 return accuracy;
838 * sets the accuracy of the physics computation, default=1/60s<br>
839 * @param accuracy
841 setAccuracy(float accuracy) argument
[all...]
/external/jmonkeyengine/engine/src/bullet-native/
H A DjmePhysicsSpace.cpp65 void jmePhysicsSpace::stepSimulation(jfloat tpf, jint maxSteps, jfloat accuracy) { argument
66 dynamicsWorld->stepSimulation(tpf, maxSteps, accuracy);
H A Dcom_jme3_bullet_PhysicsSpace.cpp67 (JNIEnv * env, jobject object, jlong spaceId, jfloat tpf, jint maxSteps, jfloat accuracy) {
74 space->stepSimulation(tpf, maxSteps, accuracy);
66 Java_com_jme3_bullet_PhysicsSpace_stepSimulation(JNIEnv * env, jobject object, jlong spaceId, jfloat tpf, jint maxSteps, jfloat accuracy) argument
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/
H A DSensorManagerFacade.java42 * accuracy (usually represented by 10 bit data). The floating point data values obtained from
81 * s1 = {u'accuracy': 3, u'pitch': -0.47323511242866517, u'xmag': 1.75, u'azimuth':
85 * s2 = 3 (Highest accuracy)<br>
220 @Rpc(description = "Returns the most recently received accuracy value.")
289 public void onAccuracyChanged(Sensor sensor, int accuracy) { argument
294 mSensorReadings.putInt("accuracy", accuracy);
295 mAccuracy = accuracy;
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/
H A DPhysicsSpace.java113 private float accuracy = 1f / 60f; field in class:PhysicsSpace
324 dynamicsWorld.stepSimulation(time, maxSteps, accuracy);
611 * each frame but is determined by the accuracy of the physics space.
764 * when the physics has the default accuracy of 60 fps. Note that setting this
773 * get the current accuracy of the physics computation
774 * @return the current accuracy
777 return accuracy;
781 * sets the accuracy of the physics computation, default=1/60s<br>
782 * @param accuracy
784 public void setAccuracy(float accuracy) { argument
[all...]
/external/deqp/
H A DAndroid.mk304 modules/gles2/accuracy/es2aAccuracyTests.cpp \
305 modules/gles2/accuracy/es2aTextureFilteringTests.cpp \
306 modules/gles2/accuracy/es2aTextureMipmapTests.cpp \
307 modules/gles2/accuracy/es2aVaryingInterpolationTests.cpp \
404 modules/gles3/accuracy/es3aAccuracyTests.cpp \
405 modules/gles3/accuracy/es3aTextureFilteringTests.cpp \
406 modules/gles3/accuracy/es3aTextureMipmapTests.cpp \
407 modules/gles3/accuracy/es3aVaryingInterpolationTests.cpp \
849 $(deqp_dir)/modules/gles2/accuracy \
854 $(deqp_dir)/modules/gles3/accuracy \
[all...]
/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/
H A DHistory.md15 * [Increased cubic-bezier accuracy.](https://github.com/web-animations/web-animations-next/pull/428)
/external/blktrace/btreplay/doc/
H A Dbtreplay.tex108 to complete accuracy are provided by the utility.
132 some accuracy in regards to ordering and timeliness, we decided to take
163 reduction in replay timing accuracy.}.
192 timing accuracy.}
195 \item Lack of IO timing accuracy -- additional time between IO bunches.
199 to guarantee per-IO timing accuracy with respect to other replayed IOs?
/external/replicaisland/src/com/replica/replicaisland/
H A DAndouKun.java723 public void onAccuracyChanged(Sensor sensor, int accuracy) { argument

Completed in 1444 milliseconds

12