Home
last modified time | relevance | path

Searched refs:testVal (Results 1 – 3 of 3) sorted by relevance

/aosp12/frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/
H A DerrorCalculator.rscript20 uchar4 testVal = rsGetElementAt_uchar4(ideal, x + j, y + i);
21 interestingRegion |= (testVal.r != regionColor.r);
22 interestingRegion |= (testVal.g != regionColor.g);
23 interestingRegion |= (testVal.b != regionColor.b);
24 interestingRegion |= (testVal.a != regionColor.a);
/aosp12/art/runtime/interpreter/mterp/
H A Dnterp.cc743 extern "C" ssize_t MterpDoPackedSwitch(const uint16_t* switchData, int32_t testVal);
744 extern "C" ssize_t NterpDoPackedSwitch(const uint16_t* switchData, int32_t testVal) in NterpDoPackedSwitch() argument
747 return MterpDoPackedSwitch(switchData, testVal); in NterpDoPackedSwitch()
750 extern "C" ssize_t MterpDoSparseSwitch(const uint16_t* switchData, int32_t testVal);
751 extern "C" ssize_t NterpDoSparseSwitch(const uint16_t* switchData, int32_t testVal) in NterpDoSparseSwitch() argument
754 return MterpDoSparseSwitch(switchData, testVal); in NterpDoSparseSwitch()
H A Dmterp.cc61 extern "C" ssize_t MterpDoSparseSwitch(const uint16_t* switchData, int32_t testVal) { in MterpDoSparseSwitch() argument
102 if (testVal < foundVal) { in MterpDoSparseSwitch()
104 } else if (testVal > foundVal) { in MterpDoSparseSwitch()
113 extern "C" ssize_t MterpDoPackedSwitch(const uint16_t* switchData, int32_t testVal) { in MterpDoPackedSwitch() argument
133 int index = testVal - firstKey; in MterpDoPackedSwitch()