HomeSort by relevance Sort by last modified time
    Searched refs:maxError (Results 1 - 12 of 12) sorted by null

  /external/skia/tests/
FontMgrAndroidParserTest.cpp 121 double maxError = 0;
134 maxError = SkTMax(maxError, error);
140 //SkDebugf("maxError: %.20f\n", maxError);
141 return maxError;
  /external/skqp/tests/
FontMgrAndroidParserTest.cpp 121 double maxError = 0;
134 maxError = SkTMax(maxError, error);
140 //SkDebugf("maxError: %.20f\n", maxError);
141 return maxError;
  /external/walt/ios/WALT/
MenuController.m 61 _client.minError, _client.maxError];
145 _client.minError, _client.maxError];
WALTClient.h 107 @property (readonly, nonatomic) int64_t maxError;
WALTClient.m 104 int64_t maxError;
248 _sync.maxError = CurrentTime(_clock) - _sync.base;
259 _sync.maxError -= _sync.minError;
267 _sync.maxError = 1e7;
282 - (int64_t)maxError {
283 return _sync.maxError;
310 uint64_t sleepTime = (_sync.maxError - _sync.minError) / kSleepTimeDivider;
395 // Adjust maxError to be the smallest delta between local and remote
398 if (digitTimes.local[i] != 0 && digitTimes.remote[i] != 0 && delta < _sync.maxError) {
399 _sync.maxError = delta
    [all...]
SettingsController.m 66 _client.minError, _client.maxError];
  /cts/suite/audio_quality/test_description/processing/
check_spectrum_playback.py 98 (passFail, minError, maxError, Spectrum) = do_check_spectrum_playback(hostData, \
107 outputData.append(maxError)
check_spectrum.py 132 (passFail, minError, maxError, TF) = do_check_spectrum(hostData_, dutData_,\
141 outputData.append(maxError)
  /prebuilts/go/darwin-x86/src/math/rand/
rand_test.go 28 maxError float64
38 func nearEqual(a, b, closeEnough, maxError float64) bool {
43 return absDiff/max(math.Abs(a), math.Abs(b)) < maxError
51 if !nearEqual(this.mean, expected.mean, expected.closeEnough, expected.maxError) {
52 s := fmt.Sprintf("mean %v != %v (allowed error %v, %v)", this.mean, expected.mean, expected.closeEnough, expected.maxError)
56 if !nearEqual(this.stddev, expected.stddev, expected.closeEnough, expected.maxError) {
57 s := fmt.Sprintf("stddev %v != %v (allowed error %v, %v)", this.stddev, expected.stddev, expected.closeEnough, expected.maxError)
552 expected.maxError = 0.08 // TODO: What is the right value here? See issue 21211.
  /prebuilts/go/linux-x86/src/math/rand/
rand_test.go 28 maxError float64
38 func nearEqual(a, b, closeEnough, maxError float64) bool {
43 return absDiff/max(math.Abs(a), math.Abs(b)) < maxError
51 if !nearEqual(this.mean, expected.mean, expected.closeEnough, expected.maxError) {
52 s := fmt.Sprintf("mean %v != %v (allowed error %v, %v)", this.mean, expected.mean, expected.closeEnough, expected.maxError)
56 if !nearEqual(this.stddev, expected.stddev, expected.closeEnough, expected.maxError) {
57 s := fmt.Sprintf("stddev %v != %v (allowed error %v, %v)", this.stddev, expected.stddev, expected.closeEnough, expected.maxError)
552 expected.maxError = 0.08 // TODO: What is the right value here? See issue 21211.
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
GraggBulirschStoerIntegrator.java 627 double maxError = Double.MAX_VALUE;
707 if ((error > 1.0e15) || ((k > 1) && (error > maxError))) {
714 maxError = FastMath.max(4 * error, 1.0);
    [all...]
  /external/ImageMagick/coders/
dds.c     [all...]

Completed in 244 milliseconds