Searched defs:iter (Results 1 - 4 of 4) sorted by relevance

/art/test/088-monitor-verification/src/
H A DMain.java71 synchronized void recursiveSync(int iter) { argument
73 if (iter < 40) {
74 recursiveSync(iter+1);
/art/test/023-many-interfaces/src/
H A DManyInterfaces.java173 private static void report(String label, long start, long end, int iter, argument
177 + " (" + (end - start) / (iter*rept) + "ns per call)");
195 int iter = 32768;
206 testIface001(obj, iter);
208 report("testIface001", start, end, iter, rept);
211 testIface049(obj, iter);
213 report("testIface049", start, end, iter, rept);
216 testIface099(obj, iter);
218 report("testIface099", start, end, iter, rept);
221 testVirt001(obj, iter);
[all...]
/art/compiler/optimizing/
H A Dcode_generator.h720 auto iter = slow_path_map_.find(dex_pc); local
721 if (iter != slow_path_map_.end()) {
722 auto candidates = iter->second;
735 iter = slow_path_map_.Put(dex_pc, {{}, {graph_->GetArena()->Adapter(kArenaAllocSlowPaths)}});
739 iter->second.emplace_back(std::make_pair(instruction, slow_path));
/art/runtime/interpreter/
H A Dunstarted_runtime.cc1695 const auto& iter = invoke_handlers_.find(name); local
1696 if (iter != invoke_handlers_.end()) {
1703 (*iter->second)(self, shadow_frame, result, arg_offset);
1716 const auto& iter = jni_handlers_.find(name); local
1717 if (iter != jni_handlers_.end()) {
1720 (*iter->second)(self, method, receiver, args, result);

Completed in 323 milliseconds