Searched defs:javaRslt (Results 1 - 3 of 3) sorted by relevance

/frameworks/rs/tests/java_api/RSTest_CompatLib/src/com/android/rs/test/
H A DUT_reduce.java69 private <T extends Number> boolean result(String testName, T javaRslt, T rsRslt) { argument
70 final boolean success = javaRslt.equals(rsRslt);
72 testName + ": java " + javaRslt + ", rs " + rsRslt + ": " +
77 private boolean result(String testName, Int2 javaRslt, Int2 rsRslt) { argument
78 final boolean success = (javaRslt.x == rsRslt.x) && (javaRslt.y == rsRslt.y);
81 ": java (" + javaRslt.x + ", " + javaRslt.y + ")" +
99 final int javaRslt = addint(input);
102 return result("addint1D", javaRslt, rsRsl
[all...]
H A DUT_reduce_backward.java69 private <T extends Number> boolean result(String testName, T javaRslt, T rsRslt) { argument
70 final boolean success = javaRslt.equals(rsRslt);
72 testName + ": java " + javaRslt + ", rs " + rsRslt + ": " +
77 private boolean result(String testName, Int2 javaRslt, Int2 rsRslt) { argument
78 final boolean success = (javaRslt.x == rsRslt.x) && (javaRslt.y == rsRslt.y);
81 ": java (" + javaRslt.x + ", " + javaRslt.y + ")" +
99 final int javaRslt = addint(input);
102 return result("addint1D", javaRslt, rsRsl
[all...]
/frameworks/rs/tests/java_api/RsTest/src/com/android/rs/test/
H A DUT_reduce_backward.java75 private <T extends Number> boolean result(String testName, T javaRslt, T rsRslt) { argument
76 final boolean success = javaRslt.equals(rsRslt);
78 testName + ": java " + javaRslt + ", rs " + rsRslt + ": " +
83 private boolean result(String testName, Float2 javaRslt, Float2 rsRslt) { argument
84 final boolean success = (javaRslt.x == rsRslt.x) && (javaRslt.y == rsRslt.y);
87 ": java (" + javaRslt.x + ", " + javaRslt.y + ")" +
93 private boolean result(String testName, Int2 javaRslt, Int2 rsRslt) { argument
94 final boolean success = (javaRslt
[all...]

Completed in 2741 milliseconds