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

/art/test/088-monitor-verification/src/
H A DMain.java63 synchronized void recursiveSync(int iter) { argument
64 if (iter < 40) {
65 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/runtime/
H A Delf_file.cc1497 std::unique_ptr<DebugInfoIterator> iter(new DebugInfoIterator(header, frame_size, abbrev));
1498 if (iter->GetCurrentTag() == nullptr) {
1501 return iter.release();
1555 static bool FixupDebugInfo(uint32_t text_start, DebugInfoIterator* iter) { argument
1557 if (iter->GetCurrentTag()->GetAttrSize(DW_AT_low_pc) != sizeof(int32_t) ||
1558 iter->GetCurrentTag()->GetAttrSize(DW_AT_high_pc) != sizeof(int32_t)) {
1561 uint32_t* PC_low = reinterpret_cast<uint32_t*>(iter->GetPointerToField(DW_AT_low_pc));
1562 uint32_t* PC_high = reinterpret_cast<uint32_t*>(iter->GetPointerToField(DW_AT_high_pc));
1567 } while (iter->next());
1579 std::unique_ptr<DebugInfoIterator> iter(
[all...]

Completed in 164 milliseconds