Home
last modified time | relevance | path

Searched refs:last (Results 1 – 9 of 9) sorted by relevance

/art/runtime/
Dmonitor_pool.cc71 Monitor* last = reinterpret_cast<Monitor*>(reinterpret_cast<uintptr_t>(chunk) + in AllocateChunk() local
73 last->next_free_ = nullptr; in AllocateChunk()
75 last->monitor_id_ = OffsetToMonitorId((num_chunks_ - 1) * kChunkSize + in AllocateChunk()
78 Monitor* before = reinterpret_cast<Monitor*>(reinterpret_cast<uintptr_t>(last) - in AllocateChunk()
80 before->next_free_ = last; in AllocateChunk()
82 before->monitor_id_ = OffsetToMonitorId(MonitorIdToOffset(last->monitor_id_) - in AllocateChunk()
85 last = before; in AllocateChunk()
87 DCHECK(last == reinterpret_cast<Monitor*>(chunk)); in AllocateChunk()
88 first_free_ = last; in AllocateChunk()
Dmem_map_test.cc112 uintptr_t last = 0; in TEST_F() local
115 EXPECT_NE(last, random_start); in TEST_F()
116 last = random_start; in TEST_F()
Delf_file.cc1463 const byte* last = dbg_abbrev + dbg_abbrev_size; in Create() local
1464 while (dbg_abbrev < last) { in Create()
/art/compiler/utils/
Darena_allocator.cc196 Arena* last = first; in FreeArenaChain() local
197 while (last->next_ != nullptr) { in FreeArenaChain()
198 last = last->next_; in FreeArenaChain()
202 last->next_ = free_arenas_; in FreeArenaChain()
/art/runtime/base/
Dstringpiece.cc66 const char* last = ptr_ + std::min(ulen - s.length_, pos) + s.length_; in rfind() local
67 const char* result = std::find_end(ptr_, last, s.ptr_, s.ptr_ + s.length_); in rfind()
68 return result != last ? result - ptr_ : npos; in rfind()
/art/runtime/jdwp/
Djdwp_main.cc579 int64_t last = last_activity_time_ms_.LoadSequentiallyConsistent(); in LastDebuggerActivity() local
582 if (last == 0) { in LastDebuggerActivity()
589 CHECK_GE(now, last); in LastDebuggerActivity()
591 VLOG(jdwp) << "+++ debugger interval=" << (now - last); in LastDebuggerActivity()
592 return now - last; in LastDebuggerActivity()
/art/test/015-switch/
Dexpected.txt10 CORRECT big sparse / last
/art/compiler/optimizing/
Dregister_allocator.cc746 HInstruction* last = block->GetLastInstruction(); in InsertParallelMoveAtExitOf() local
747 HInstruction* previous = last->GetPrevious(); in InsertParallelMoveAtExitOf()
755 block->InsertInstructionBefore(move, last); in InsertParallelMoveAtExitOf()
/art/compiler/dex/
Dmir_graph.cc1075 MIR* last = last_list_mir->next; in InsertMIRListAfter() local
1076 for (MIR* mir = first_list_mir; mir != last; mir = mir->next) { in InsertMIRListAfter()