Home
last modified time | relevance | path

Searched refs:last (Results 1 – 14 of 14) 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.cc115 uintptr_t last = 0; in TEST_F() local
118 EXPECT_NE(last, random_start); in TEST_F()
119 last = random_start; in TEST_F()
/art/runtime/base/
Diteration_range.h35 IterationRange(iterator first, iterator last) : first_(first), last_(last) { } in IterationRange() argument
Dstringpiece.cc74 const char* last = ptr_ + std::min(ulen - s.length_, pos) + s.length_; in rfind() local
75 const char* result = std::find_end(ptr_, last, s.ptr_, s.ptr_ + s.length_); in rfind()
76 return result != last ? result - ptr_ : npos; in rfind()
Darena_allocator.cc226 Arena* last = first; in FreeArenaChain() local
227 while (last->next_ != nullptr) { in FreeArenaChain()
228 last = last->next_; in FreeArenaChain()
232 last->next_ = free_arenas_; in FreeArenaChain()
/art/runtime/jdwp/
Djdwp_main.cc610 int64_t last = last_activity_time_ms_.LoadSequentiallyConsistent(); in LastDebuggerActivity() local
613 if (last == 0) { in LastDebuggerActivity()
620 CHECK_GE(now, last); in LastDebuggerActivity()
622 VLOG(jdwp) << "+++ debugger interval=" << (now - last); in LastDebuggerActivity()
623 return now - last; in LastDebuggerActivity()
/art/test/800-smali/smali/
Db_20224106.smali4 # an order abort (the last failure must be hard).
Db_20843113.smali22 move-exception v0 # Overwrite the (last) "this" register. This should be
/art/test/015-switch/
Dexpected.txt126 CORRECT big sparse / last
/art/compiler/optimizing/
Dnodes.cc1232 HInstruction* last = body->GetLastInstruction(); in InlineInto() local
1238 if (last->IsReturn()) { in InlineInto()
1239 invoke->ReplaceWith(last->InputAt(0)); in InlineInto()
1241 DCHECK(last->IsReturnVoid()); in InlineInto()
1244 invoke->GetBlock()->RemoveInstruction(last); in InlineInto()
1265 HInstruction* last = predecessor->GetLastInstruction(); in InlineInto() local
1267 return_value = last->InputAt(0); in InlineInto()
1270 predecessor->RemoveInstruction(last); in InlineInto()
1280 HInstruction* last = predecessor->GetLastInstruction(); in InlineInto() local
1282 return_value->AsPhi()->AddInput(last->InputAt(0)); in InlineInto()
[all …]
Dregister_allocator.cc1422 HInstruction* last = block->GetLastInstruction(); in InsertParallelMoveAtExitOf() local
1427 DCHECK(!last->IsIf()); in InsertParallelMoveAtExitOf()
1428 HInstruction* previous = last->GetPrevious(); in InsertParallelMoveAtExitOf()
1432 size_t position = last->GetLifetimePosition(); in InsertParallelMoveAtExitOf()
1437 block->InsertInstructionBefore(move, last); in InsertParallelMoveAtExitOf()
/art/compiler/
Dcompiled_method.h121 SrcMap(InputIt first, InputIt last, const Allocator& alloc) in SrcMap() argument
122 : std::vector<SrcMapElem, Allocator>(first, last, alloc) {} in SrcMap()
/art/tools/dexfuzz/src/dexfuzz/program/mutators/
DArithOpChanger.java163 Opcode last = opcodeList.get(opcodeList.size() - 1); in getLegalDifferentOpcode() local
164 if (Opcode.isBetween(opcode, first, last)) { in getLegalDifferentOpcode()
/art/compiler/dex/
Dmir_graph.cc1135 MIR* last = last_list_mir->next; in InsertMIRListAfter() local
1136 for (MIR* mir = first_list_mir; mir != last; mir = mir->next) { in InsertMIRListAfter()