/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(current_chunk_list_index_* (kMaxListSize * 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 | 152 uintptr_t last = 0; in TEST_F() local 155 EXPECT_NE(last, random_start); in TEST_F() 156 last = random_start; in TEST_F()
|
/art/compiler/utils/ |
D | intrusive_forward_list.h | 149 IntrusiveForwardList(InputIterator first, InputIterator last) : IntrusiveForwardList() { in IntrusiveForwardList() argument 150 insert_after(before_begin(), first, last); in IntrusiveForwardList() 184 void assign(InputIterator first, InputIterator last) { in assign() argument 185 IntrusiveForwardList tmp(first, last); in assign() 202 iterator insert_after(const_iterator position, InputIterator first, InputIterator last) { in insert_after() argument 203 while (first != last) { in insert_after() 209 const_iterator last = position; in erase_after() local 210 std::advance(last, 2); in erase_after() 211 return erase_after(position, last); in erase_after() 213 iterator erase_after(const_iterator position, const_iterator last) { in erase_after() argument [all …]
|
D | assembler.h | 345 void AppendRawData(const std::vector<uint8_t>& raw_data, size_t first, size_t last) { in AppendRawData() argument 347 DCHECK_LE(first, last); in AppendRawData() 348 DCHECK_LE(last, raw_data.size()); in AppendRawData() 349 opcodes_.insert(opcodes_.end(), raw_data.begin() + first, raw_data.begin() + last); in AppendRawData()
|
/art/compiler/optimizing/ |
D | constant_folding_test.cc | 761 HInstruction* last; in TEST_F() local 762 block->AddInstruction(last = new (GetAllocator()) HAbove(zero, parameter)); in TEST_F() 763 block->AddInstruction(new (GetAllocator()) HSelect(last, parameter, parameter, 0)); in TEST_F() 764 block->AddInstruction(last = new (GetAllocator()) HAbove(parameter, zero)); in TEST_F() 765 block->AddInstruction(new (GetAllocator()) HSelect(last, parameter, parameter, 0)); in TEST_F() 766 block->AddInstruction(last = new (GetAllocator()) HAboveOrEqual(zero, parameter)); in TEST_F() 767 block->AddInstruction(new (GetAllocator()) HSelect(last, parameter, parameter, 0)); in TEST_F() 768 block->AddInstruction(last = new (GetAllocator()) HAboveOrEqual(parameter, zero)); in TEST_F() 769 block->AddInstruction(new (GetAllocator()) HSelect(last, parameter, parameter, 0)); in TEST_F() 770 block->AddInstruction(last = new (GetAllocator()) HBelow(zero, parameter)); in TEST_F() [all …]
|
D | dead_code_elimination.cc | 244 HInstruction* last = block->GetLastInstruction(); in SimplifyAlwaysThrows() local 247 first->GetNext() == last && in SimplifyAlwaysThrows() 248 last->IsGoto() && in SimplifyAlwaysThrows() 326 HInstruction* last = block->GetLastInstruction(); in SimplifyIfs() local 329 last->IsIf() && in SimplifyIfs() 332 bool has_only_phi_and_if = (last == first) && (last->InputAt(0) == block->GetFirstPhi()); in SimplifyIfs() 337 (first->GetNext() == last) && in SimplifyIfs() 338 (last->InputAt(0) == first) && in SimplifyIfs() 371 successor_to_update = last->AsIf()->IfTrueSuccessor(); in SimplifyIfs() 375 successor_to_update = last->AsIf()->IfFalseSuccessor(); in SimplifyIfs()
|
D | induction_var_range_test.cc | 784 HInstruction* last = range_.GenerateLastValue(phi, graph_, loop_preheader_); in TEST_F() local 785 ASSERT_TRUE(last->IsAdd()); in TEST_F() 786 ExpectInt(1000, last->InputAt(0)); in TEST_F() 787 ExpectInt(0, last->InputAt(1)); in TEST_F() 836 HInstruction* last = range_.GenerateLastValue(phi, graph_, loop_preheader_); in TEST_F() local 837 ASSERT_TRUE(last->IsSub()); in TEST_F() 838 ExpectInt(1000, last->InputAt(0)); in TEST_F() 839 ASSERT_TRUE(last->InputAt(1)->IsNeg()); in TEST_F() 840 last = last->InputAt(1)->InputAt(0); in TEST_F() 841 ASSERT_TRUE(last->IsSub()); in TEST_F() [all …]
|
D | code_sinking.cc | 37 HInstruction* last = exit_predecessor->GetLastInstruction(); in Run() local 39 if (!last->IsReturn() && !last->IsReturnVoid()) { in Run()
|
D | register_allocation_resolver.cc | 636 HInstruction* last = block->GetLastInstruction(); in InsertParallelMoveAtExitOf() local 641 DCHECK(!last->IsIf() && !last->IsPackedSwitch()); in InsertParallelMoveAtExitOf() 642 HInstruction* previous = last->GetPrevious(); in InsertParallelMoveAtExitOf() 646 size_t position = last->GetLifetimePosition(); in InsertParallelMoveAtExitOf() 651 block->InsertInstructionBefore(move, last); in InsertParallelMoveAtExitOf()
|
D | nodes.cc | 2425 HInstruction* last = body->GetLastInstruction(); in InlineInto() local 2432 if (last->IsReturn()) { in InlineInto() 2433 return_value = last->InputAt(0); in InlineInto() 2435 DCHECK(last->IsReturnVoid()); in InlineInto() 2438 invoke->GetBlock()->RemoveInstruction(last); in InlineInto() 2507 HInstruction* last = predecessor->GetLastInstruction(); in InlineInto() local 2508 if (last->IsThrow()) { in InlineInto() 2522 if (last->IsReturnVoid()) { in InlineInto() 2526 DCHECK(last->IsReturn()); in InlineInto() 2528 return_value_phi->AddInput(last->InputAt(0)); in InlineInto() [all …]
|
D | ssa_liveness_analysis.h | 199 inline Iterator FindUseAtOrAfterPosition(Iterator first, Iterator last, size_t position) { in FindUseAtOrAfterPosition() argument 205 first, last, [position](const value_type& use) { return use.GetPosition() >= position; }); in FindUseAtOrAfterPosition() 219 Iterator last, in FindMatchingUseRange() argument 222 Iterator begin = FindUseAtOrAfterPosition(first, last, position_begin); in FindMatchingUseRange() 223 Iterator end = FindUseAtOrAfterPosition(begin, last, position_end); in FindMatchingUseRange()
|
D | induction_var_analysis.h | 160 InductionInfo* RotatePeriodicInduction(InductionInfo* induction, InductionInfo* last);
|
/art/libartbase/base/ |
D | dchecked_vector.h | 70 InputIterator last, 72 : Base(first, last, alloc) { } in Base() argument 159 iterator insert(const_iterator position, InputIterator first, InputIterator last) { in insert() argument 161 return Base::insert(position, first, last); in insert() 177 iterator erase(const_iterator first, const_iterator last) { in erase() argument 179 DCHECK(first <= last && last <= cend()); in erase() 180 return Base::erase(first, last); in erase()
|
D | iteration_range.h | 35 IterationRange(iterator first, iterator last) : first_(first), last_(last) { } in IterationRange() argument
|
D | stringpiece.h | 179 const char* last = ptr_ + std::min(ulen - s.length_, pos) + s.length_; variable 180 const char* result = std::find_end(ptr_, last, s.ptr_, s.ptr_ + s.length_); 181 return result != last ? result - ptr_ : npos;
|
/art/test/048-reflect-v8/ |
D | expected.txt | 22 Annotations by type, defined by class User with annotation Calendar: @Calendar(dayOfMonth=last, day… 23 …ss User with annotation Calendars: @Calendars(value=[@Calendar(dayOfMonth=last, dayOfWeek=unspecif… 28 Annotations by type, defined by class UserSub with annotation Calendar: @Calendar(dayOfMonth=last, … 29 …UserSub with annotation Calendars: @Calendars(value=[@Calendar(dayOfMonth=last, dayOfWeek=unspecif… 31 …serSub2 with annotation Calendars: @Calendars(value=[@Calendar(dayOfMonth=last, dayOfWeek=unspecif… 40 …r, annotation interface Calendars: @Calendars(value=[@Calendar(dayOfMonth=last, dayOfWeek=unspecif… 54 …ype, defined by class User with annotation Calendar: @Calendar(dayOfMonth=last, dayOfWeek=unspecif… 55 …ss User with annotation Calendars: @Calendars(value=[@Calendar(dayOfMonth=last, dayOfWeek=unspecif… 71 Annotations by type, defined by method user with annotation Calendar: @Calendar(dayOfMonth=last, da… 72 …od user with annotation Calendars: @Calendars(value=[@Calendar(dayOfMonth=last, dayOfWeek=unspecif… [all …]
|
/art/libdexfile/dex/ |
D | primitive_test.cc | 28 int last = static_cast<int>(Primitive::Type::kPrimLast); in CheckPrimitiveTypeWidensTo() local 29 for (int i = 0; i <= last; ++i) { in CheckPrimitiveTypeWidensTo()
|
/art/runtime/base/ |
D | arena_allocator.cc | 369 Arena* last = first; in FreeArenaChain() local 370 while (last->next_ != nullptr) { in FreeArenaChain() 371 last = last->next_; in FreeArenaChain() 375 last->next_ = free_arenas_; in FreeArenaChain()
|
/art/test/015-switch/ |
D | expected.txt | 126 CORRECT big sparse / last
|
/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/runtime/jdwp/ |
D | jdwp_main.cc | 732 int64_t last = last_activity_time_ms_.LoadSequentiallyConsistent(); in LastDebuggerActivity() local 735 if (last == 0) { in LastDebuggerActivity() 742 CHECK_GE(now, last); in LastDebuggerActivity() 744 VLOG(jdwp) << "+++ debugger interval=" << (now - last); in LastDebuggerActivity() 745 return now - last; in LastDebuggerActivity()
|
/art/test/564-checker-irreducible-loop/smali/ |
D | IrreducibleLoop.smali | 38 # ArtMethod was a live_in of the last block before the loop, but did not have
|
/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/tools/runtime_memusage/ |
D | README | 46 default: only the last pid is processed
|