Searched refs:last (Results 1 – 14 of 14) sorted by relevance
/art/runtime/ |
D | monitor_pool.cc | 71 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()
|
D | mem_map_test.cc | 115 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/ |
D | iteration_range.h | 35 IterationRange(iterator first, iterator last) : first_(first), last_(last) { } in IterationRange() argument
|
D | stringpiece.cc | 74 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()
|
D | arena_allocator.cc | 226 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/ |
D | jdwp_main.cc | 610 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/ |
D | b_20224106.smali | 4 # an order abort (the last failure must be hard).
|
D | b_20843113.smali | 22 move-exception v0 # Overwrite the (last) "this" register. This should be
|
/art/test/015-switch/ |
D | expected.txt | 126 CORRECT big sparse / last
|
/art/compiler/optimizing/ |
D | nodes.cc | 1232 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 …]
|
D | register_allocator.cc | 1422 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/ |
D | compiled_method.h | 121 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/ |
D | ArithOpChanger.java | 163 Opcode last = opcodeList.get(opcodeList.size() - 1); in getLegalDifferentOpcode() local 164 if (Opcode.isBetween(opcode, first, last)) { in getLegalDifferentOpcode()
|
/art/compiler/dex/ |
D | mir_graph.cc | 1135 MIR* last = last_list_mir->next; in InsertMIRListAfter() local 1136 for (MIR* mir = first_list_mir; mir != last; mir = mir->next) { in InsertMIRListAfter()
|