Searched refs:results (Results 1 - 6 of 6) sorted by relevance

/art/test/003-omnibus-opcodes/src/
H A DFloatMath.java132 * We pass in the arguments and return the results so the compiler
138 float[] results = new float[10];
142 results[0] = x + y;
143 results[1] = x - y;
144 results[2] = x * y;
145 results[3] = x / y;
146 results[4] = x % -y;
151 results[5] = tmp;
154 results[6] = tmp;
157 results[
167 floatOperCheck(float[] results) argument
216 doubleOperCheck(double[] results) argument
247 checkConvI(int[] results) argument
267 checkConvL(long[] results) argument
284 checkConvF(float[] results) argument
298 checkConvD(double[] results) argument
[all...]
H A DIntMath.java161 * We pass in the arguments and return the results so the compiler
167 int[] results = new int[10];
170 results[0] = x + y;
171 results[1] = x - y;
172 results[2] = x * y;
173 results[3] = x * x;
174 results[4] = x / y;
175 results[5] = x % -y;
176 results[6] = x & y;
177 results[
185 intOperCheck(int[] results) argument
226 lit16Check(int[] results) argument
256 lit8Check(int[] results) argument
365 intShiftCheck(int[] results) argument
399 longOperCheck(long[] results) argument
438 longShiftCheck(long[] results) argument
[all...]
/art/test/107-int-math2/src/
H A DMain.java334 * We pass in the arguments and return the results so the compiler
338 int[] results = new int[10];
341 results[0] = x + y;
342 results[1] = x - y;
343 results[2] = x * y;
344 results[3] = x * x;
345 results[4] = x / y;
346 results[5] = x % -y;
347 results[6] = x & y;
348 results[
[all...]
/art/test/522-checker-regression-monitor-exit/src/
H A DMain.java69 List<Future<Integer>> results = pool.invokeAll(queries, 5, TimeUnit.SECONDS);
73 int result = results.get(i).get();
/art/compiler/utils/
H A Dassembler_thumb_test.cc32 // Include results file (generated manually)
36 // This controls whether the results are printed to the
40 // of the other results.
42 // When this is false, the results are not printed to the
43 // output, but are compared against the expected results
91 void DumpAndCheck(std::vector<uint8_t>& code, const char* testname, const char* const* results) { argument
137 // Print the results only, don't check. This is used to generate new output for inserting
143 // Check the results match the appropriate results in the .inc file.
155 if (CompareIgnoringSpace(results[lineinde
177 EmitAndCheck(arm::Thumb2Assembler* assembler, const char* testname, const char* const* results) argument
190 std::map<std::string, const char* const*>::iterator results = test_results.find(testname); local
[all...]
/art/test/083-compiler-regressions/src/
H A DMain.java9759 int[] results = new int[] {
9832 for (int i = 0; i != results.length; i += 2) {
9833 if (results[i] != results[i + 1]) {
9835 fails.append("\n #" + (i / 2) + ": " + results[i] + " != " + results[i + 1]);

Completed in 1669 milliseconds