Home
last modified time | relevance | path

Searched refs:results (Results 1 – 20 of 20) sorted by relevance

/art/test/003-omnibus-opcodes/src/
DFloatMath.java138 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 …]
DIntMath.java167 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/
DMain.java338 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/626-const-class-linking/src/
DMain.java124 final Object[] results = new Object[threads.length]; in testRacyLoader() local
136 results[my_index] = get.invoke(null); in testRacyLoader()
138 results[my_index] = ite.getCause(); in testRacyLoader()
140 results[my_index] = t; in testRacyLoader()
150 dumpResultStats(results, 1); in testRacyLoader()
158 final Object[] results = new Object[threads.length]; in testRacyLoader2() local
173 results[my_index] = get.invoke(null); in testRacyLoader2()
175 results[my_index] = ite.getCause(); in testRacyLoader2()
177 results[my_index] = t; in testRacyLoader2()
187 dumpResultStats(results, 2); in testRacyLoader2()
[all …]
/art/test/988-method-trace/src/art/
DTest988.java222 private static List<Printable> results = new ArrayList<>();
275 results.add(new MethodEntry(m, cnt - 1));
286 results.add(new MethodThrownThrough(m, cnt));
288 results.add(new MethodReturn(m, result, cnt));
332 for (Printable p : results) {
340 results.add(new FibResult("fibonacci(%d)=%d\n", x, y));
342 results.add(new FibThrow("fibonacci(%d) -> %s\n", x, t));
/art/compiler/utils/
Dassembler_thumb_test.cc94 void DumpAndCheck(std::vector<uint8_t>& code, const char* testname, const char* const* results) { in DumpAndCheck() argument
158 if (CompareIgnoringSpace(results[lineindex], testline) != 0) { in DumpAndCheck()
160 << results[lineindex] << "/" << testline << ", test name: " << testname; in DumpAndCheck()
165 ASSERT_TRUE(results[lineindex] == nullptr); in DumpAndCheck()
190 const char* const* results) { in EmitAndCheck() argument
197 DumpAndCheck(managed_code, testname, results); in EmitAndCheck()
202 std::map<std::string, const char* const*>::iterator results = test_results.find(testname); in EmitAndCheck() local
203 ASSERT_NE(results, test_results.end()); in EmitAndCheck()
205 EmitAndCheck(assembler, testname, results->second); in EmitAndCheck()
/art/runtime/openjdkjvmti/
Dti_thread.h83 jvmtiError* results);
87 jvmtiError* results);
Dti_thread.cc840 jvmtiError* results) { in SuspendThreadList() argument
843 } else if (results == nullptr || threads == nullptr) { in SuspendThreadList()
859 results[i] = env->SuspendThread(threads[i]); in SuspendThreadList()
865 results[first_current_thread_index] = res; in SuspendThreadList()
869 results[*it] = other_results; in SuspendThreadList()
878 jvmtiError* results) { in ResumeThreadList() argument
881 } else if (results == nullptr || threads == nullptr) { in ResumeThreadList()
885 results[i] = env->ResumeThread(threads[i]); in ResumeThreadList()
DOpenjdkJvmTi.cc145 jvmtiError* results) { in SuspendThreadList() argument
148 return ThreadUtil::SuspendThreadList(env, request_count, request_list, results); in SuspendThreadList()
160 jvmtiError* results) { in ResumeThreadList() argument
163 return ThreadUtil::ResumeThreadList(env, request_count, request_list, results); in ResumeThreadList()
/art/test/522-checker-regression-monitor-exit/src/
DMain.java69 List<Future<Integer>> results = pool.invokeAll(queries); in main() local
73 int result = results.get(i).get(); in main()
/art/test/085-old-style-inner-class/
Dinfo.txt1 Test that the conversion of an old-style (pre-1.5) inner class results
/art/test/990-field-trace/src/art/
DTest990.java137 private static List<Printable> results = new ArrayList<>();
144 results.add(new FieldWrite(m, target, f, value));
152 results.add(new FieldRead(m, target, f));
228 for (Printable p : results) {
/art/test/024-illegal-access/
Dinfo.txt1 Test that an attempt to access a private field results in a verification
/art/test/708-jit-cache-churn/src/
DJitCacheChurnTest.java82 List<Future<Integer>> results = executorService.invokeAll(tasks); in runTasks() local
83 for (Future<?> result : results) { in runTasks()
/art/tools/runtime_memusage/
Dsanitizer_logcat_analysis.sh197 results_dir=$pid_dir/results
/art/tools/golem/
Dbuild-target.sh36 it also tars the results of the build together into your <target.tar.gz> file.
/art/runtime/openjdkjvmti/include/
Djvmti.h1487 jvmtiError* results);
1493 jvmtiError* results);
1820 jvmtiError* results) { in SuspendThreadList()
1821 return functions->SuspendThreadList(this, request_count, request_list, results); in SuspendThreadList()
1830 jvmtiError* results) { in ResumeThreadList()
1831 return functions->ResumeThreadList(this, request_count, request_list, results); in ResumeThreadList()
/art/compiler/driver/
Dcompiler_driver.cc513 VerificationResults* results = driver->GetVerificationResults(); in CompileMethod() local
514 DCHECK(results != nullptr); in CompileMethod()
515 const VerifiedMethod* verified_method = results->GetVerifiedMethod(method_ref); in CompileMethod()
576 VerificationResults* results = driver->GetVerificationResults(); in CompileMethod() local
577 DCHECK(results != nullptr); in CompileMethod()
578 const VerifiedMethod* verified_method = results->GetVerifiedMethod(method_ref); in CompileMethod()
581 results->IsCandidateForCompilation(method_ref, access_flags) && in CompileMethod()
/art/compiler/
Doat_writer.cc831 VerificationResults* results = writer_->compiler_driver_->GetVerificationResults(); in EndClass() local
832 if (results != nullptr && results->IsClassRejected(class_ref)) { in EndClass()
/art/test/083-compiler-regressions/src/
DMain.java9759 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()