Home
last modified time | relevance | path

Searched refs:mThreshold (Results 1 – 8 of 8) sorted by relevance

/cts/hostsidetests/mediapc/videoencodingquality/bdrate/src/main/java/com/android/media/videoquality/bdrate/
DVeqResultCheckFailureException.java26 private final double mThreshold; field in VeqResultCheckFailureException
31 mThreshold = threshold; in VeqResultCheckFailureException()
37 return mThreshold; in getThreshold()
/cts/tests/sensor/src/android/hardware/cts/helpers/sensorverification/
DMagnitudeVerification.java46 private final float mThreshold; field in MagnitudeVerification
59 mThreshold = threshold; in MagnitudeVerification()
99 boolean failed = Math.abs(mean - mExpected) > mThreshold; in verify()
106 mean, mExpected, mThreshold)); in verify()
115 return new MagnitudeVerification(mExpected, mThreshold); in clone()
DStandardDeviationVerification.java48 private final float[] mThreshold; field in StandardDeviationVerification
60 mThreshold = threshold; in StandardDeviationVerification()
153 if (stdDevs[i] > mThreshold[i]) { in verify()
158 expectedSb.append(String.format("<%.6f", mThreshold[i])); in verify()
180 return new StandardDeviationVerification(mThreshold); in clone()
/cts/tests/tests/uirendering/src/android/uirendering/cts/bitmapverifiers/
DColorCountVerifier.java24 private int mThreshold; field in ColorCountVerifier
29 mThreshold = threshold; in ColorCountVerifier()
42 bitmap[indexFromXAndY(x, y, stride, offset)], mColor, mThreshold)) { in verify()
/cts/tests/sensor/src/android/hardware/cts/helpers/
DSensorCalibratedUncalibratedVerifier.java40 private final float mThreshold; field in SensorCalibratedUncalibratedVerifier
50 mThreshold = threshold; in SensorCalibratedUncalibratedVerifier()
68 mThreshold); in execute() local
/cts/tests/videocodec/src/android/videocodec/cts/
DVideoEncoderTargetBitrateTest.java66 private final float mThreshold; field in VideoEncoderTargetBitrateTest
127 mThreshold = cfgParams.mBitRate / 8.f * sf; in VideoEncoderTargetBitrateTest()
142 if (size > mThreshold) { in dequeueOutput()
145 + " is %d > %f (Threshold) \n", mOutputCount, size, mThreshold)); in dequeueOutput()
/cts/tests/tests/uirendering/src/android/uirendering/cts/bitmapcomparers/
DMSSIMComparer.java37 private double mThreshold; field in MSSIMComparer
40 mThreshold = threshold; in MSSIMComparer()
91 return (SSIMTotal >= mThreshold); in verifySame()
/cts/apps/CtsVerifier/jni/audio_loopback/analyzer/
DGlitchAnalyzer.h188 if (peak > mThreshold) { in processInputFrame()
205 if (mMagnitude > mThreshold) { in processInputFrame()
252 } else if (mMagnitude < mThreshold) { in processInputFrame()
405 double mThreshold = 0.005; variable