/art/runtime/base/ |
D | hash_set.h | 66 Iterator(HashSet* hash_set, size_t index) : hash_set_(hash_set), index_(index) { in Iterator() 70 return hash_set_ == other.hash_set_ && index_ == other.index_; 76 index_ = NextNonEmptySlot(index_); 81 index_ = NextNonEmptySlot(index_); 86 return hash_set_->ElementForIndex(index_); 90 return hash_set_->ElementForIndex(index_); 102 size_t index_; variable 105 return index_; in GetIndex()
|
/art/compiler/optimizing/ |
D | nodes.h | 464 : user_(user), index_(index), tail_(tail) {} 468 size_t GetIndex() const { return index_; } 474 const size_t index_; local 674 explicit HInputIterator(HInstruction* instruction) : instruction_(instruction), index_(0) {} in HInputIterator() 676 bool Done() const { return index_ == instruction_->InputCount(); } in Done() 677 HInstruction* Current() const { return instruction_->InputAt(index_); } in Current() 678 void Advance() { index_++; } in Advance() 682 size_t index_; variable 1239 : HExpression(parameter_type), index_(index) {} in HParameterValue() 1241 uint8_t GetIndex() const { return index_; } in GetIndex() [all …]
|
D | ssa_liveness_analysis.h | 561 : post_order_(liveness.GetLinearPostOrder()), index_(liveness.GetLinearPostOrder().Size()) {} in HLinearOrderIterator() 563 bool Done() const { return index_ == 0; } in Done() 564 HBasicBlock* Current() const { return post_order_.Get(index_ -1); } in Current() 565 void Advance() { --index_; DCHECK_GE(index_, 0U); } in Advance() 569 size_t index_; variable 577 : post_order_(liveness.GetLinearPostOrder()), index_(0) {} in HLinearPostOrderIterator() 579 bool Done() const { return index_ == post_order_.Size(); } in Done() 580 HBasicBlock* Current() const { return post_order_.Get(index_); } in Current() 581 void Advance() { ++index_; } in Advance() 585 size_t index_; variable
|
D | builder.cc | 45 Temporaries(HGraph* graph, size_t count) : graph_(graph), count_(count), index_(0) { in Temporaries() 53 HInstruction* temp = new (graph_->GetArena()) HTemporary(index_++); in Add() 65 size_t index_; member in art::Temporaries
|
/art/compiler/ |
D | image_writer.cc | 464 : strings_(strings), index_(index) { in StringCollector() 469 collector->strings_->SetWithoutChecks<false>(collector->index_++, obj->AsString()); in Callback() 473 return index_; in GetIndex() 478 size_t index_; member in art::StringCollector
|
/art/compiler/dex/quick/x86/ |
D | int_x86.cc | 1148 index_(index), array_base_(array_base), len_offset_(len_offset) { in GenArrayBoundsCheck() 1156 RegStorage new_index = index_; in GenArrayBoundsCheck() 1159 if (index_ == m2l_->TargetReg(kArg1, kNotWide)) { in GenArrayBoundsCheck() 1161 m2l_->OpRegCopy(m2l_->TargetReg(kArg2, kNotWide), index_); in GenArrayBoundsCheck() 1164 m2l_->OpRegCopy(m2l_->TargetReg(kArg0, kNotWide), index_); in GenArrayBoundsCheck() 1176 const RegStorage index_; in GenArrayBoundsCheck() member in art::X86Mir2Lir::GenArrayBoundsCheck::ArrayBoundsCheckSlowPath 1196 index_(index), array_base_(array_base), len_offset_(len_offset) { in GenArrayBoundsCheck() 1207 x86_m2l->LoadConstant(m2l_->TargetReg(kArg0, kNotWide), index_); in GenArrayBoundsCheck() 1213 const int32_t index_; in GenArrayBoundsCheck() member in art::X86Mir2Lir::GenArrayBoundsCheck::ArrayBoundsCheckSlowPath
|
/art/compiler/dex/quick/ |
D | gen_common.cc | 89 index_(index), length_(length) { in GenArrayBoundsCheck() 96 m2l_->CallRuntimeHelperRegReg(kQuickThrowArrayBounds, index_, length_, true); in GenArrayBoundsCheck() 100 const RegStorage index_; in GenArrayBoundsCheck() member in art::Mir2Lir::GenArrayBoundsCheck::ArrayBoundsCheckSlowPath 113 index_(index), length_(length) { in GenArrayBoundsCheck() 125 m2l_->LoadConstant(arg0_32, index_); in GenArrayBoundsCheck() 130 const int32_t index_; in GenArrayBoundsCheck() member in art::Mir2Lir::GenArrayBoundsCheck::ArrayBoundsCheckSlowPath
|
/art/runtime/ |
D | elf_file.cc | 1377 const uint32_t index_; member in art::DebugTag 1445 explicit DebugTag(uint32_t index) : index_(index), size_(0), tag_(0), has_child_(false) {} in DebugTag() 1469 abbrev->tags_.insert(std::pair<uint32_t, uint32_t>(tag->index_, abbrev->tag_list_.size())); in Create()
|
/art/compiler/driver/ |
D | compiler_driver.cc | 1456 : index_(0), in ParallelCompilationManager() 1492 index_.StoreRelaxed(begin); in ForAll() 1507 return index_.FetchAndAddSequentiallyConsistent(1); in NextIndex() 1539 AtomicInteger index_; member in art::ParallelCompilationManager
|