HomeSort by relevance Sort by last modified time
    Searched full:deviation (Results 1 - 25 of 53) sorted by null

1 2 3

  /frameworks/base/graphics/java/android/graphics/
DiscretePathEffect.java 23 * original path by deviation.
25 public DiscretePathEffect(float segmentLength, float deviation) {
26 native_instance = nativeCreate(segmentLength, deviation);
29 private static native int nativeCreate(float length, float deviation);
  /external/skia/src/animator/
SkDrawDiscrete.cpp 26 SK_MEMBER(deviation, Float),
34 SkDiscrete::SkDiscrete() : deviation(0), segLength(0) {
38 if (deviation <= 0 || segLength <= 0)
41 return new SkDiscretePathEffect(segLength, deviation);
SkDrawDiscrete.h 28 SkScalar deviation; member in class:SkDiscrete
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audioquality/experiments/
GainLinearityExperiment.java 34 private static final float TOLERANCE = 2.0f; // Maximum allowed deviation from linearity in dB
70 float deviation = mNative.linearityTest(pcms, AudioQualityVerifierActivity.SAMPLE_RATE, local
72 if (deviation < 0.0f) {
74 setReport(String.format(getString(R.string.aq_linearity_report_error), deviation)); local
75 } else if (deviation > TOLERANCE) {
78 deviation, TOLERANCE)); local
82 deviation, TOLERANCE)); local
  /external/skia/include/effects/
SkDiscretePathEffect.h 29 away from the original path by a maximum of deviation.
32 SkDiscretePathEffect(SkScalar segLength, SkScalar deviation);
  /cts/tests/tests/graphics/src/android/graphics/cts/
DiscretePathEffectTest.java 44 private static final int DEVIATION = 10; // must be < BITMAP_HEIGHT
52 DiscretePathEffect effect = new DiscretePathEffect(SEGMENT_LENGTH, DEVIATION);
80 paint.setStrokeWidth(1 + 2 * DEVIATION);
107 assertTrue(maxY - minY <= 1 + 2 * DEVIATION);
108 // intersecting pixels must be less than line length, otherwise deviation doesn't work
  /external/skia/src/effects/
SkDiscretePathEffect.cpp 32 SkDiscretePathEffect::SkDiscretePathEffect(SkScalar segLength, SkScalar deviation)
33 : fSegLength(segLength), fPerterb(deviation)
  /frameworks/base/core/jni/android/graphics/
PathEffect.cpp 54 float length, float deviation) {
56 SkFloatToScalar(deviation));
  /external/chromium/net/base/
connection_type_histograms.cc 13 // deviation of the histograms because they are meaningless.
  /external/chromium/net/ftp/
ftp_server_type_histograms.cc 13 // Ignore the shape, average, and standard deviation of the histograms because
  /external/iproute2/
README.distribution 8 things so that X has mean 0 and standard deviation 1, though that's not
54 2. Normalize the data so that it has mean 0 and standard deviation 1.
91 deviation 1. How do you know what values to use for real? Here, I've
93 values, and it will return their mean (mu), standard deviation (sigma),
  /external/iproute2/netem/
README.distribution 10 things so that X has mean 0 and standard deviation 1, though that's not
56 2. Normalize the data so that it has mean 0 and standard deviation 1.
93 deviation 1. How do you know what values to use for real? Here, I've
95 values, and it will return their mean (mu), standard deviation (sigma),
  /external/kernel-headers/original/linux/sunrpc/
timer.h 17 unsigned long sdrtt[5]; /* smoothed medium deviation of RTT */
  /cts/apps/CtsVerifier/jni/audioquality/
CompareSpectra.h 22 respectively; both sampled at sample_rate. The maximum deviation
LinearityTest.h 27 normal speaking levels). The maximum deviation in linearity found
MeasureRms.h 28 standard deviation of this measurement over all frames is returned in
Wrapper.cpp 88 ret[1] = standard deviation of the RMS
179 ret[0] = max deviation,
181 ret[2] = rms deviation.
207 /* Return maximum deviation from linearity in dB.
CompareSpectra.cpp 117 respectively; both sampled at sample_rate. The maximum deviation
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
DiscretePathEffect_Delegate.java 65 /*package*/ static int nativeCreate(float length, float deviation) {
  /frameworks/base/core/java/android/view/
WindowOrientationListener.java 230 // Maximum allowable deviation of the magnitude of the sensor vector from that of gravity,
355 float deviation = Math.abs(magnitude - SensorManager.STANDARD_GRAVITY); local
357 handleAccelerationDistrust(deviation);
388 * @param deviation absolute difference between the current magnitude and gravity
390 private void handleAccelerationDistrust(float deviation) {
391 if (deviation > MAX_DEVIATION_FROM_GRAVITY) {
  /cts/apps/CtsVerifier/res/values/
strings.xml 193 <string name="aq_linearity_report_normal">Deviation from linearity = %1$.3g dB\nMax allowed = %2$.1f dB</string>
199 <string name="aq_spectrum_report_normal">RMS deviation = %1$.2f\nMax allowed deviation = %2$.1f</string>
  /external/chromium/third_party/icu/source/test/perf/perldriver/
Dataset.pm 33 # standard deviation -- we estimate it from the data, and (c)
  /external/icu4c/test/perf/perldriver/
Dataset.pm 33 # standard deviation -- we estimate it from the data, and (c)
  /libcore/luni/src/main/java/java/util/
Random.java 135 * {@code double} with mean 0.0 and standard deviation 1.0.
  /bionic/libc/regex/
regex2.h 48 * the machinery backwards; in particular, any deviation from sequential

Completed in 552 milliseconds

1 2 3