/frameworks/native/libs/vr/libdvrcommon/include/private/dvr/test/ |
D | test_macros.h | 16 const A& expected, const B& actual, const T& tolerance) { in CmpArrayLikeFloatEq() argument 18 if (!IsEqual(expected[i], actual[i], tolerance)) { in CmpArrayLikeFloatEq() 21 << "\" differ at element " << i << " by at least " << tolerance in CmpArrayLikeFloatEq() 34 const A& expected, const B& actual, const T& tolerance) { in CmpMatrixLikeFloatEq() argument 37 if (!IsEqual(expected(r, c), actual(r, c), tolerance)) { in CmpMatrixLikeFloatEq() 41 << " by at least " << tolerance << " : " in CmpMatrixLikeFloatEq() 54 const A& expected, const B& actual, const T& tolerance) { in CmpArrayLikeFloatNe() argument 56 if (!IsEqual(expected[i], actual[i], tolerance)) { in CmpArrayLikeFloatNe() 64 << "\" by at least " << tolerance << "."; in CmpArrayLikeFloatNe() 72 const A& expected, const B& actual, const T& tolerance) { in CmpMatrixLikeFloatNe() argument [all …]
|
/frameworks/native/libs/vr/libdvrcommon/tests/ |
D | pose_test.cpp | 29 const auto tolerance = FT(0.0001); in TYPED_TEST() local 39 EXPECT_MAT4_NEAR(result_pose, mat4_t::Identity(), tolerance); in TYPED_TEST() 48 const auto tolerance = FT(0.0001); in TYPED_TEST() local 62 EXPECT_VEC3_NEAR(expected_transformed, actual_transformed, tolerance); in TYPED_TEST() 72 const auto tolerance = FT(0.0001); in TYPED_TEST() local 86 EXPECT_VEC3_NEAR(expected_rotated, actual_rotated, tolerance); in TYPED_TEST() 96 const auto tolerance = FT(0.0001); in TYPED_TEST() local 117 EXPECT_VEC3_NEAR(expected_transformed, actual_transformed, tolerance); in TYPED_TEST() 127 const auto tolerance = FT(0.0001); in TYPED_TEST() local 141 EXPECT_VEC3_NEAR(start_position, inverted, tolerance); in TYPED_TEST() [all …]
|
/frameworks/base/graphics/java/android/graphics/ |
D | AvoidXfermode.java | 54 public AvoidXfermode(int opColor, int tolerance, Mode mode) { in AvoidXfermode() argument 55 if (tolerance < 0 || tolerance > 255) { in AvoidXfermode()
|
/frameworks/base/media/java/android/media/ |
D | SyncParams.java | 231 public SyncParams setTolerance(float tolerance) { in setTolerance() argument 232 if (tolerance < 0.f || tolerance >= 1.f) { in setTolerance() 235 mTolerance = tolerance; in setTolerance()
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/util/ |
D | field_comparator.cc | 184 Tolerance* tolerance = FindOrNull(map_tolerance_, &field); in CompareDoubleOrFloat() local 185 if (tolerance == NULL && has_default_tolerance_) { in CompareDoubleOrFloat() 186 tolerance = &default_tolerance_; in CompareDoubleOrFloat() 188 if (tolerance == NULL) { in CompareDoubleOrFloat() 195 value_1, value_2, static_cast<T>(tolerance->fraction), in CompareDoubleOrFloat() 196 static_cast<T>(tolerance->margin)); in CompareDoubleOrFloat()
|
/frameworks/native/libs/gui/tests/ |
D | GLTest.cpp | 178 int r, int g, int b, int a, int tolerance) { in checkPixel() argument 190 if (r >= 0 && abs(r - int(pixel[0])) > tolerance) { in checkPixel() 193 if (g >= 0 && abs(g - int(pixel[1])) > tolerance) { in checkPixel() 199 if (b >= 0 && abs(b - int(pixel[2])) > tolerance) { in checkPixel() 205 if (a >= 0 && abs(a - int(pixel[3])) > tolerance) { in checkPixel() 219 int tolerance) { in assertRectEq() argument 222 if (abs(r1.left - r2.left) > tolerance) { in assertRectEq() 225 if (abs(r1.top - r2.top) > tolerance) { in assertRectEq() 231 if (abs(r1.right - r2.right) > tolerance) { in assertRectEq() 237 if (abs(r1.bottom - r2.bottom) > tolerance) { in assertRectEq()
|
D | GLTest.h | 56 int r, int g, int b, int a, int tolerance = 2); 58 int tolerance = 1);
|
/frameworks/base/test-base/src/android/test/ |
D | InstrumentationTestCase.java | 181 runCount = method.getAnnotation(FlakyTest.class).tolerance(); in runTest() 188 final int tolerance = runCount; in runTest() local 195 runMethod(testMethod, tolerance, repetitive); in runTest() 210 private void runMethod(Method runMethod, int tolerance) throws Throwable { in runMethod() argument 211 runMethod(runMethod, tolerance, false); in runMethod() 214 private void runMethod(Method runMethod, int tolerance, boolean isRepetitive) throws Throwable { in runMethod() argument 237 } while ((runCount < tolerance) && (isRepetitive || exception != null)); in runMethod()
|
D | FlakyTest.java | 46 int tolerance() default 1; in tolerance() method
|
/frameworks/base/core/tests/utillib/src/android/test/ |
D | BandwidthTestCase.java | 66 runCount = method.getAnnotation(FlakyTest.class).tolerance(); in runTest() 73 final int tolerance = runCount; in runTest() local 80 runMethod(testMethod, tolerance, repetitive); in runTest() 116 private void runMethod(Method runMethod, int tolerance, boolean isRepetitive) throws Throwable { in runMethod() argument 140 } while ((runCount < tolerance) && (isRepetitive || exception != null)); in runMethod()
|
/frameworks/av/media/libaaudio/tests/ |
D | test_flowgraph.cpp | 96 constexpr float tolerance = 0.0001f; // arbitrary in TEST() local 100 EXPECT_NEAR(expected, output[i], tolerance); in TEST() 104 EXPECT_NEAR(expected, output[i], tolerance); in TEST() 153 constexpr float tolerance = 0.000001f; // arbitrary in TEST() local 155 EXPECT_NEAR(expected[i], output[i], tolerance); in TEST()
|
/frameworks/base/media/jni/ |
D | android_media_SyncParams.cpp | 38 tolerance = env->GetFieldID(clazz, "mTolerance", "F"); in init() 62 sync.mTolerance = env->GetFloatField(params, fields.tolerance); in fillFromJobject() 79 env->SetFloatField(params, fields.tolerance, (jfloat)sync.mTolerance); in asJobject()
|
D | android_media_SyncParams.h | 41 jfieldID tolerance; member
|
/frameworks/rs/rsov/tests/RSoVTest/src/com/android/rs/rsov/test/ |
D | UT_multi_input.java | 33 private final float tolerance = 1e-6f; field in UT_multi_input 94 if ((a[i] + b[i] - out0[i]) > tolerance) { in run()
|
/frameworks/base/tools/aapt/ |
D | Main.cpp | 282 int tolerance = 0; in main() local 354 tolerance = atoi(argv[0]); in main() 355 bundle.setGrayscaleTolerance(tolerance); in main() 356 … printf("%s: Images with deviation <= %d will be forced to grayscale.\n", prog, tolerance); in main()
|
/frameworks/base/test-base/hiddenapi/src/android/test/ |
D | InstrumentationTestCase.java | 36 private void runMethod(Method runMethod, int tolerance) throws Throwable { in runMethod() argument
|
/frameworks/rs/tests/java_api/RsBLAS_Benchmark/src/com/example/android/rs/blasbenchmark/ |
D | SGEMMTest.java | 84 float tolerance = allowedError * (l2NormOut < l2NormRef ? l2NormOut : l2NormRef); in testWithTolerance() local 85 tolerance /= m * n; in testWithTolerance() 89 if (absErr > tolerance) { in testWithTolerance()
|
/frameworks/base/services/robotests/backup/src/com/android/server/backup/encryption/chunking/cdc/ |
D | FingerprintMixerTest.java | 140 float tolerance = 0.1f; in mix_randomlyDistributesBits() local 154 assertThat(diff).isLessThan(tolerance); in mix_randomlyDistributesBits()
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/ |
D | CameraErrorCollector.java | 293 public <T> boolean expectEquals(String msg, float expected, float actual, float tolerance) { in expectEquals() argument 298 if (!(Math.abs(expected - actual) <= tolerance)) { in expectEquals() 300 expected, actual, tolerance)); in expectEquals() 316 public <T> boolean expectEquals(String msg, double expected, double actual, double tolerance) { in expectEquals() argument 321 if (!(Math.abs(expected - actual) <= tolerance)) { in expectEquals() 323 expected, actual, tolerance)); in expectEquals()
|
/frameworks/base/services/tests/servicestests/src/com/android/server/ |
D | Vector3Test.java | 28 private static final float tolerance = 1.0f / (1 << 12); field in Vector3Test 47 return Math.abs(a - b) <= tolerance; in nearlyEqual()
|
/frameworks/base/core/tests/coretests/src/android/graphics/ |
D | BitmapTest.java | 201 final int tolerance = 1; in testSetPixelsWithNonOpaqueAlpha() local 220 assertTrue("red", Math.abs(rr - r1) <= tolerance); in testSetPixelsWithNonOpaqueAlpha() 225 assertTrue("green", Math.abs(gg - g1) <= tolerance); in testSetPixelsWithNonOpaqueAlpha() 230 assertTrue("blue", Math.abs(bb - b1) <= tolerance); in testSetPixelsWithNonOpaqueAlpha()
|
/frameworks/native/libs/input/tests/ |
D | VelocityTracker_test.cpp | 52 float tolerance = fabsf(target * fraction); in EXPECT_NEAR_BY_FRACTION() local 58 tolerance = 1E-6; in EXPECT_NEAR_BY_FRACTION() 60 EXPECT_NEAR(actual, target, tolerance); in EXPECT_NEAR_BY_FRACTION()
|
/frameworks/native/services/surfaceflinger/tests/ |
D | Transaction_test.cpp | 137 const Color& color, uint8_t tolerance) { in expectBufferColor() argument 154 auto colorCompare = [tolerance](uint8_t a, uint8_t b) { in expectBufferColor() 156 return tmp <= tolerance; in expectBufferColor() 248 void expectColor(const Rect& rect, const Color& color, uint8_t tolerance = 0) { in expectColor() argument 250 expectBufferColor(mOutBuffer, mPixels, rect, color, tolerance); in expectColor() 253 void expectBorder(const Rect& rect, const Color& color, uint8_t tolerance = 0) { in expectBorder() argument 268 expectColor(top, color, tolerance); in expectBorder() 272 expectColor(left, color, tolerance); in expectBorder() 276 expectColor(right, color, tolerance); in expectBorder() 286 expectColor(bottom, color, tolerance); in expectBorder() [all …]
|
/frameworks/native/services/sensorservice/ |
D | mat.h | 308 static bool isPositiveSemidefinite(const mat<TYPE, C, C>& m, TYPE tolerance) { in isPositiveSemidefinite() argument 315 if (fabs(m[i][j] - m[j][i]) > tolerance) in isPositiveSemidefinite()
|
/frameworks/native/libs/renderengine/tests/ |
D | RenderEngineTest.cpp | 69 uint8_t tolerance = 0) { in expectBufferColor() 74 auto colorCompare = [tolerance](uint8_t a, uint8_t b) { in expectBufferColor() 76 return tmp <= tolerance; in expectBufferColor()
|