Home
last modified time | relevance | path

Searched refs:mTolerance (Results 1 – 5 of 5) sorted by relevance

/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/cpp/analyzer/
DGlitchAnalyzer.h51 return mTolerance; in getTolerance()
55 mTolerance = tolerance; in setTolerance()
56 mScaledTolerance = mMagnitude * mTolerance; in setTolerance()
61 mScaledTolerance = mMagnitude * mTolerance; in setMagnitude()
415 float mTolerance = 0.10; // scaled from 0.0 to 1.0 variable
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/
DManualGlitchActivity.java68 private float mTolerance = DEFAULT_TOLERANCE; field in ManualGlitchActivity
205 mTolerance = tolerance; in configureStreamsFromBundle()
254 + String.format("tolerance = %5.3f\n", mTolerance) in stopAutomaticTest()
/third_party/skia/third_party/externals/dawn/src/tests/end2end/
DTextureFormatTests.cpp31 : mExpected(std::move(expected)), mTolerance(tolerance) { in ExpectFloatWithTolerance()
64 if (mTolerance == 0.0f) { in FloatsMatch()
69 return error < mTolerance; in FloatsMatch()
73 float mTolerance; member in ExpectFloatWithTolerance
/third_party/skia/third_party/externals/dawn/src/tests/
DDawnTest.cpp1561 ExpectEq<T, U>::ExpectEq(T singleValue, T tolerance) : mTolerance(tolerance) { in ExpectEq()
1567 : mTolerance(tolerance) { in ExpectEq()
1619 testing::AssertionResult check = CheckImpl(mExpected[i], actual[i], mTolerance); in Check()
DDawnTest.h732 T mTolerance; variable