Searched defs:last (Results 1 - 8 of 8) sorted by relevance

/art/runtime/
H A Dmonitor_pool.cc71 Monitor* last = reinterpret_cast<Monitor*>(reinterpret_cast<uintptr_t>(chunk) + local
73 last->next_free_ = nullptr;
75 last->monitor_id_ = OffsetToMonitorId((num_chunks_ - 1) * kChunkSize +
78 Monitor* before = reinterpret_cast<Monitor*>(reinterpret_cast<uintptr_t>(last) -
80 before->next_free_ = last;
81 // Derive monitor_id from last.
82 before->monitor_id_ = OffsetToMonitorId(MonitorIdToOffset(last->monitor_id_) -
85 last = before;
87 DCHECK(last == reinterpret_cast<Monitor*>(chunk));
88 first_free_ = last;
[all...]
H A Dmem_map_test.cc112 uintptr_t last = 0; local
115 EXPECT_NE(last, random_start);
116 last = random_start;
H A Delf_file.cc436 // us). This is usually the last in an oat file, and a good indicator of whether writing was
1463 const byte* last = dbg_abbrev + dbg_abbrev_size; local
1464 while (dbg_abbrev < last) {
1506 // Moves to the next DIE. Returns false if at last entry.
/art/runtime/base/
H A Dstringpiece.cc66 const char* last = ptr_ + std::min(ulen - s.length_, pos) + s.length_; local
67 const char* result = std::find_end(ptr_, last, s.ptr_, s.ptr_ + s.length_);
68 return result != last ? result - ptr_ : npos;
/art/compiler/utils/
H A Darena_allocator.cc196 Arena* last = first; local
197 while (last->next_ != nullptr) {
198 last = last->next_;
202 last->next_ = free_arenas_;
/art/runtime/jdwp/
H A Djdwp_main.cc568 * Return the time, in milliseconds, since the last debugger activity.
579 int64_t last = last_activity_time_ms_.LoadSequentiallyConsistent(); local
582 if (last == 0) {
583 VLOG(jdwp) << "+++ last=busy";
589 CHECK_GE(now, last);
591 VLOG(jdwp) << "+++ debugger interval=" << (now - last);
592 return now - last;
/art/compiler/optimizing/
H A Dregister_allocator.cc113 // Iterate post-order, to ensure the list is sorted, and the last added interval
428 // Find the register that is used the last, and spill the interval
480 // Pick the register that is used the last.
491 // If the first use of that instruction is after the last use of the found
746 HInstruction* last = block->GetLastInstruction(); local
747 HInstruction* previous = last->GetPrevious();
755 block->InsertInstructionBefore(move, last);
/art/compiler/dex/
H A Dmir_graph.cc1031 // Insert it after the last MIR.
1036 // Insert it after the last MIR.
1075 MIR* last = last_list_mir->next; local
1076 for (MIR* mir = first_list_mir; mir != last; mir = mir->next) {
2069 // the last SSA number of the same dalvik register. At the end, if it is different than ssa_reg,

Completed in 197 milliseconds