Home
last modified time | relevance | path

Searched refs:results (Results 1 – 22 of 22) 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
151 if (CompareIgnoringSpace(results[lineindex], testline) != 0) { in DumpAndCheck()
153 << results[lineindex] << "/" << testline << ", test name: " << testname; in DumpAndCheck()
158 ASSERT_TRUE(results[lineindex] == nullptr); in DumpAndCheck()
180 const char* const* results) { in EmitAndCheck() argument
187 DumpAndCheck(managed_code, testname, results); in EmitAndCheck()
192 std::map<std::string, const char* const*>::iterator results = test_results.find(testname); in EmitAndCheck() local
193 ASSERT_NE(results, test_results.end()); in EmitAndCheck()
195 EmitAndCheck(assembler, testname, results->second); in EmitAndCheck()
/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/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/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/openjdkjvmti/
Dti_thread.h91 jvmtiError* results);
95 jvmtiError* results);
Dti_thread.cc993 jvmtiError* results) { in SuspendThreadList() argument
996 } else if (results == nullptr || threads == nullptr) { in SuspendThreadList()
1007 results[i] = env->SuspendThread(threads[i]); in SuspendThreadList()
1014 results[first_current_thread_index] = res; in SuspendThreadList()
1018 results[*it] = other_results; in SuspendThreadList()
1027 jvmtiError* results) { in ResumeThreadList() argument
1030 } else if (results == nullptr || threads == nullptr) { in ResumeThreadList()
1034 results[i] = env->ResumeThread(threads[i]); in ResumeThreadList()
DOpenjdkJvmTi.cc157 jvmtiError* results) { in SuspendThreadList() argument
160 return ThreadUtil::SuspendThreadList(env, request_count, request_list, results); in SuspendThreadList()
172 jvmtiError* results) { in ResumeThreadList() argument
175 return ThreadUtil::ResumeThreadList(env, request_count, request_list, results); in ResumeThreadList()
/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/runtime/dex/
Dart_dex_file_loader_test.cc143 static const Result results[] = { in TEST_F() local
200 ASSERT_EQ(arraysize(results), it.NumVirtualMethods()); in TEST_F()
201 for (const Result& r : results) { in TEST_F()
/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/tools/titrace/
DREADME.md57 …the case of Android applications, they are always killed, so we need to manually print the results.
/art/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.cc547 VerificationResults* results = driver->GetVerificationResults(); in CompileMethodDex2Dex() local
548 DCHECK(results != nullptr); in CompileMethodDex2Dex()
549 const VerifiedMethod* verified_method = results->GetVerifiedMethod(method_ref); in CompileMethodDex2Dex()
628 VerificationResults* results = driver->GetVerificationResults(); in CompileMethodQuick() local
629 DCHECK(results != nullptr); in CompileMethodQuick()
630 const VerifiedMethod* verified_method = results->GetVerifiedMethod(method_ref); in CompileMethodQuick()
633 results->IsCandidateForCompilation(method_ref, access_flags) && in CompileMethodQuick()
/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()
/art/dex2oat/linker/
Doat_writer.cc951 VerificationResults* results = writer_->compiler_driver_->GetVerificationResults(); in EndClass() local
952 if (results != nullptr && results->IsClassRejected(class_ref)) { in EndClass()