/cts/tests/tests/renderscript/src/android/renderscript/cts/generated/ |
D | TestAbs.rs | 24 return abs(inV); 28 return abs(inV); 32 return abs(inV); 36 return abs(inV); 40 return abs(inV); 44 return abs(inV); 48 return abs(inV); 52 return abs(inV); 56 return abs(inV); 60 return abs(inV); [all …]
|
/cts/tests/tests/view/src/android/view/animation/cts/ |
D | ScaleAnimationTest.java | 99 assertTrue(Math.abs(trans1X) < Math.abs(trans2X)); in testApplyTransformation() 100 assertTrue(Math.abs(trans2X) < Math.abs(trans3X)); in testApplyTransformation() 101 assertTrue(Math.abs(trans1Y) < Math.abs(trans2Y)); in testApplyTransformation() 102 assertTrue(Math.abs(trans2Y) < Math.abs(trans3Y)); in testApplyTransformation() 139 assertTrue(Math.abs(trans1X) < Math.abs(trans2X)); 140 assertTrue(Math.abs(trans2X) < Math.abs(trans3X)); 141 assertTrue(Math.abs(trans1Y) < Math.abs(trans2Y)); 142 assertTrue(Math.abs(trans2Y) < Math.abs(trans3Y));
|
/cts/tests/tests/uirendering/src/android/uirendering/cts/util/ |
D | CompareUtils.java | 10 int diff = Math.abs(Color.red(color) - Color.red(expectedColor)) in verifyPixelWithThreshold() 11 + Math.abs(Color.green(color) - Color.green(expectedColor)) in verifyPixelWithThreshold() 12 + Math.abs(Color.blue(color) - Color.blue(expectedColor)); in verifyPixelWithThreshold() 24 return Math.abs(Color.red(color) - average) <= threshold in verifyPixelGrayScale() 25 && Math.abs(Color.green(color) - average) <= threshold in verifyPixelGrayScale() 26 && Math.abs(Color.blue(color) - average) <= threshold; in verifyPixelGrayScale()
|
/cts/apps/CameraITS/tests/scene1/ |
D | test_param_color_correction.py | 95 assert(abs(g_means[1] - g_means[0]) < THRESHOLD_MAX_DIFF) 96 assert(abs(g_means[2] - g_means[1]) < THRESHOLD_MAX_DIFF) 97 assert(abs(r_means[2] - r_means[0]) < THRESHOLD_MAX_DIFF) 98 assert(abs(r_means[1] - 2.0 * r_means[0]) < THRESHOLD_MAX_DIFF) 99 assert(abs(b_means[1] - b_means[0]) < THRESHOLD_MAX_DIFF) 100 assert(abs(b_means[2] - 2.0 * b_means[0]) < THRESHOLD_MAX_DIFF)
|
D | test_crop_region_raw.py | 103 assert ((abs(cr_expected["left"] - cr_reported["left"]) <= ex) and 104 (abs(cr_expected["right"] - cr_reported["right"]) <= ex) and 105 (abs(cr_expected["top"] - cr_reported["top"]) <= ey) and 106 (abs(cr_expected["bottom"] - cr_reported["bottom"]) <= ey))
|
D | test_param_tonemap_mode.py | 97 assert(abs(rgb_diffs[0]) < THRESHOLD_DIFF_MAX_DIFF) 98 assert(abs(rgb_diffs[1]) < THRESHOLD_DIFF_MAX_DIFF) 99 assert(abs(rgb_diffs[2]) < THRESHOLD_DIFF_MAX_DIFF)
|
D | test_tonemap_sequence.py | 65 assert(all([abs(deltas[i]) < MAX_SAME_DELTA for i in [0,1,3,4]])) 66 assert(abs(deltas[2]) > MIN_DIFF_DELTA)
|
/cts/tests/tests/uirendering/src/android/uirendering/cts/bitmapcomparers/ |
D | WeightedPixelDifference.java | 59 error += Math.abs(Color.red(color1) - Color.red(color2)); in errorBetweenPixels() 60 error += Math.abs(Color.green(color1) - Color.green(color2)); in errorBetweenPixels() 61 error += Math.abs(Color.blue(color1) - Color.blue(color2)); in errorBetweenPixels() 62 error += Math.abs(Color.alpha(color1) - Color.alpha(color2)); in errorBetweenPixels()
|
D | NearPixelComparer.java | 61 int error = Math.abs(Color.red(ideal) - Color.red(given)); in pixelsAreSame() 62 error += Math.abs(Color.green(ideal) - Color.green(given)); in pixelsAreSame() 63 error += Math.abs(Color.blue(ideal) - Color.blue(given)); in pixelsAreSame()
|
D | ThresholdDifferenceComparer.java | 52 int error = Math.abs(Color.red(ideal[index]) - Color.red(given[index])); in verifySame() 53 error += Math.abs(Color.blue(ideal[index]) - Color.blue(given[index])); in verifySame() 54 error += Math.abs(Color.green(ideal[index]) - Color.green(given[index])); in verifySame()
|
/cts/tests/tests/hardware/src/android/hardware/cts/helpers/ |
D | MovementDetectorHelper.java | 102 float totalAcceleration = Math.abs(linearAcceleration[0]) in onSensorChanged() 103 + Math.abs(linearAcceleration[1]) in onSensorChanged() 104 + Math.abs(linearAcceleration[2]); in onSensorChanged()
|
/cts/tests/camera/src/android/hardware/camera2/cts/rs/ |
D | BitmapUtils.java | 85 diff += Math.abs(Color.red(aPix) - Color.red(bPix)); // red in calcDifferenceMetric() 86 diff += Math.abs(Color.green(aPix) - Color.green(bPix)); // green in calcDifferenceMetric() 87 diff += Math.abs(Color.blue(aPix) - Color.blue(bPix)); // blue in calcDifferenceMetric()
|
/cts/suite/audio_quality/test_description/processing/ |
D | check_spectrum_playback.py | 53 print "Phh", abs(Phh[iLow:iHigh]) 54 spectrum = np.sqrt(abs(Phh[iLow:iHigh])) 59 positiveMax = abs(max(spectrum)) 60 negativeMin = abs(min(spectrum))
|
D | check_spectrum.py | 57 print "Phh", abs(Phh[iLow:iHigh]) 58 print "Pdd", abs(Pdd[iLow:iHigh]) 59 amplitudeRatio = np.sqrt(abs(Pdd[iLow:iHigh]/Phh[iLow:iHigh])) 64 positiveMax = abs(max(amplitudeRatio)) 65 negativeMin = abs(min(amplitudeRatio))
|
/cts/tests/tests/graphics/src/android/graphics/drawable/cts/ |
D | DrawableTestUtils.java | 163 totalError += Math.abs(Color.red(idealColor) - Color.red(givenColor)); in compareImages() 164 totalError += Math.abs(Color.green(idealColor) - Color.green(givenColor)); in compareImages() 165 totalError += Math.abs(Color.blue(idealColor) - Color.blue(givenColor)); in compareImages() 166 totalError += Math.abs(Color.alpha(idealColor) - Color.alpha(givenColor)); in compareImages()
|
/cts/tests/tests/widget/src/android/widget/cts/util/ |
D | TestUtils.java | 184 int varianceAlpha = Math.abs(sourceAlpha - expectedAlpha); in assertAllPixelsOfColor() 185 int varianceRed = Math.abs(sourceRed - expectedRed); in assertAllPixelsOfColor() 186 int varianceGreen = Math.abs(sourceGreen - expectedGreen); in assertAllPixelsOfColor() 187 int varianceBlue = Math.abs(sourceBlue - expectedBlue); in assertAllPixelsOfColor()
|
/cts/apps/CameraITS/tests/scene0/ |
D | test_jitter.py | 61 assert(abs(range0) < MAX_FRAME_DELTA_JITTER) 62 assert(abs(range1) < MAX_FRAME_DELTA_JITTER)
|
/cts/tests/tests/view/src/android/view/cts/ |
D | VelocityTrackerTest.java | 196 float absError = Math.abs(actual - expected); in error() 200 if (Math.abs(expected) < 0.001f) { in error() 203 return absError / Math.abs(expected); in error()
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_static/d/ |
D | T_invoke_static_1.java | 22 return Math.abs(-1234567); in run()
|
D | T_invoke_static_19.java | 22 return Math.abs(-1234567); in run()
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_static_range/d/ |
D | T_invoke_static_range_1.java | 22 return Math.abs(-1234567); in run()
|
D | T_invoke_static_range_19.java | 22 return Math.abs(-1234567); in run()
|
/cts/apps/CameraITS/tests/inprog/ |
D | test_burst_sameness_fullres_auto.py | 86 delta_maxes.append(max(abs(delta_max_pos), abs(delta_max_neg)))
|
/cts/tests/tests/opengl/src/android/opengl/cts/ |
D | NativeColorBufferTest.java | 187 assertTrue(Math.abs(r - (actualColor[0]/255.0)) < 0.1f); in compare() 188 assertTrue(Math.abs(g - (actualColor[1]/255.0)) < 0.1f); in compare() 189 assertTrue(Math.abs(b - (actualColor[2]/255.0)) < 0.1f); in compare()
|
/cts/hostsidetests/theme/src/android/theme/cts/ |
D | ComparisonTask.java | 110 if (Math.abs(db) > threshold || in compare() 111 Math.abs(dg) > threshold || in compare() 112 Math.abs(dr) > threshold) { in compare()
|