Home
last modified time | relevance | path

Searched refs:totalError (Results 1 – 2 of 2) sorted by relevance

/aosp12/frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/
H A DErrorCalculator.java100 float totalError = 0; in calcErrorRS() local
102 totalError += row; in calcErrorRS()
104 totalError /= 1024.0f; in calcErrorRS()
112 Log.d(LOG_TAG, "rs: error " + totalError + ", pixels " + interestingPixels); in calcErrorRS()
114 return totalError / interestingPixels; in calcErrorRS()
152 float totalError = 0; in calcError() local
159 totalError += Math.abs(Color.red(idealColor) - Color.red(givenColor)); in calcError()
161 totalError += Math.abs(Color.blue(idealColor) - Color.blue(givenColor)); in calcError()
165 totalError /= 1024.0f; in calcError()
172 Log.d(LOG_TAG, "dvk: error " + totalError + ", pixels " + interestingPixels); in calcError()
[all …]
/aosp12/frameworks/av/services/mediametrics/
H A DHeatMap.h78 size_t totalError = 0; in heatCount() local
91 totalError += error; in heatCount()
94 heat.emplace_front(totalOk, totalError); in heatCount()