Home
last modified time | relevance | path

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

/art/runtime/base/
Dhash_set.h66 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/
Dnodes.h464 : 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 …]
Dssa_liveness_analysis.h561 : 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
Dbuilder.cc45 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/
Dimage_writer.cc464 : 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/
Dint_x86.cc1148 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/
Dgen_common.cc89 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/
Delf_file.cc1377 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/
Dcompiler_driver.cc1456 : index_(0), in ParallelCompilationManager()
1492 index_.StoreRelaxed(begin); in ForAll()
1507 return index_.FetchAndAddSequentiallyConsistent(1); in NextIndex()
1539 AtomicInteger index_; member in art::ParallelCompilationManager