Home
last modified time | relevance | path

Searched refs:difference (Results 1 – 9 of 9) sorted by relevance

/cts/tests/tests/uirendering/src/android/uirendering/cts/bitmapcomparers/
DMeanSquaredComparer.rs17 float difference = (idealFloats.r - givenFloats.r) + (idealFloats.g - givenFloats.g) +
19 v_out[0] += (difference * difference);
DMeanSquaredComparer.java87 float difference = idealSum - givenSum; in getMSE() local
88 totalError += (difference * difference); in getMSE()
/cts/apps/CtsVerifier/include/colorchecker/
Dvec2.h51 int difference = 0.f; in squareDistance() local
52 difference = (static_cast<float>(mX) - static_cast<float>(param.x())) * in squareDistance()
56 return difference; in squareDistance()
Dvec3.h81 float difference = 0.f; in squareDistance() local
82 difference = static_cast<float>(mRed - param.r()) * in squareDistance()
88 return difference; in squareDistance()
/cts/tools/signature-tools/templates/
DCommon_meta.st2 <meta name="keywords" content="API difference, difference between two APIs, API diff">
/cts/libs/commonutil/src/com/android/cts/util/
DStatisticsUtils.java80 double difference = mean - value.doubleValue(); in getVariance() local
81 squaredDiffs.add(Math.pow(difference, 2)); in getVariance()
/cts/tests/tests/hardware/src/android/hardware/cts/helpers/
DSensorCtsHelper.java84 double difference = mean - value.doubleValue(); in getVariance() local
85 squaredDiffs.add(Math.pow(difference, 2)); in getVariance()
/cts/tests/tests/hardware/src/android/hardware/camera2/cts/
DImageReaderTest.java430 double difference = BitmapUtils.calcDifferenceMetric(yuvBmap, jpegBmap); in testAllOutputYUVResolutions() local
433 difference); in testAllOutputYUVResolutions()
434 if (difference > IMAGE_DIFFERENCE_TOLERANCE) { in testAllOutputYUVResolutions()
458 difference); in testAllOutputYUVResolutions()
DDngCreatorTest.java436 double difference = BitmapUtils.calcDifferenceMetric(jpegPatch, rawPatch); in testRaw16JpegConsistency() local
437 if (difference > IMAGE_DIFFERENCE_TOLERANCE) { in testRaw16JpegConsistency()
460 difference); in testRaw16JpegConsistency()