Searched refs:results (Results 1 – 8 of 8) sorted by relevance
/art/test/003-omnibus-opcodes/src/ |
D | FloatMath.java | 138 float[] results = new float[10]; in floatOperTest() local 142 results[0] = x + y; in floatOperTest() 143 results[1] = x - y; in floatOperTest() 144 results[2] = x * y; in floatOperTest() 145 results[3] = x / y; in floatOperTest() 146 results[4] = x % -y; in floatOperTest() 151 results[5] = tmp; in floatOperTest() 154 results[6] = tmp; in floatOperTest() 157 results[7] = tmp; in floatOperTest() 160 results[8] = tmp; in floatOperTest() [all …]
|
D | IntMath.java | 167 int[] results = new int[10]; in intOperTest() local 170 results[0] = x + y; in intOperTest() 171 results[1] = x - y; in intOperTest() 172 results[2] = x * y; in intOperTest() 173 results[3] = x * x; in intOperTest() 174 results[4] = x / y; in intOperTest() 175 results[5] = x % -y; in intOperTest() 176 results[6] = x & y; in intOperTest() 177 results[7] = x | y; in intOperTest() 178 results[8] = x ^ y; in intOperTest() [all …]
|
/art/test/107-int-math2/src/ |
D | Main.java | 338 int[] results = new int[10]; in intOperTest() local 341 results[0] = x + y; in intOperTest() 342 results[1] = x - y; in intOperTest() 343 results[2] = x * y; in intOperTest() 344 results[3] = x * x; in intOperTest() 345 results[4] = x / y; in intOperTest() 346 results[5] = x % -y; in intOperTest() 347 results[6] = x & y; in intOperTest() 348 results[7] = x | y; in intOperTest() 349 results[8] = x ^ y; in intOperTest() [all …]
|
/art/test/522-checker-regression-monitor-exit/src/ |
D | Main.java | 69 List<Future<Integer>> results = pool.invokeAll(queries, 5, TimeUnit.SECONDS); in main() local 73 int result = results.get(i).get(); in main()
|
/art/test/085-old-style-inner-class/ |
D | info.txt | 1 Test that the conversion of an old-style (pre-1.5) inner class results
|
/art/test/024-illegal-access/ |
D | info.txt | 1 Test that an attempt to access a private field results in a verification
|
/art/compiler/utils/ |
D | assembler_thumb_test.cc | 91 void DumpAndCheck(std::vector<uint8_t>& code, const char* testname, const char* const* results) { in DumpAndCheck() argument 155 if (CompareIgnoringSpace(results[lineindex], testline) != 0) { in DumpAndCheck() 157 << results[lineindex] << "/" << testline; in DumpAndCheck() 162 ASSERT_TRUE(results[lineindex] == nullptr); in DumpAndCheck() 178 const char* const* results) { in EmitAndCheck() argument 185 DumpAndCheck(managed_code, testname, results); in EmitAndCheck() 190 std::map<std::string, const char* const*>::iterator results = test_results.find(testname); in EmitAndCheck() local 191 ASSERT_NE(results, test_results.end()); in EmitAndCheck() 193 EmitAndCheck(assembler, testname, results->second); in EmitAndCheck()
|
/art/test/083-compiler-regressions/src/ |
D | Main.java | 9759 int[] results = new int[] { in testIfCcz() local 9832 for (int i = 0; i != results.length; i += 2) { in testIfCcz() 9833 if (results[i] != results[i + 1]) { in testIfCcz() 9835 fails.append("\n #" + (i / 2) + ": " + results[i] + " != " + results[i + 1]); in testIfCcz()
|