Searched defs:index_ (Results 1 - 9 of 9) sorted by relevance

/art/runtime/base/
H A Dhash_set.h66 Iterator(HashSet* hash_set, size_t index) : hash_set_(hash_set), index_(index) {
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_; member in class:art::HashSet::Iterator
[all...]
/art/compiler/optimizing/
H A Dbuilder.cc45 Temporaries(HGraph* graph, size_t count) : graph_(graph), count_(count), index_(0) {
53 HInstruction* temp = new (graph_->GetArena()) HTemporary(index_++);
65 size_t index_; member in class:art::Temporaries
H A Dssa_liveness_analysis.h561 : post_order_(liveness.GetLinearPostOrder()), index_(liveness.GetLinearPostOrder().Size()) {}
563 bool Done() const { return index_ == 0; }
564 HBasicBlock* Current() const { return post_order_.Get(index_ -1); }
565 void Advance() { --index_; DCHECK_GE(index_, 0U); }
569 size_t index_; member in class:art::HLinearOrderIterator
577 : post_order_(liveness.GetLinearPostOrder()), index_(0) {}
579 bool Done() const { return index_ == post_order_.Size(); }
580 HBasicBlock* Current() const { return post_order_.Get(index_); }
581 void Advance() { ++index_; }
585 size_t index_; member in class:art::HLinearPostOrderIterator
[all...]
H A Dnodes.h464 : user_(user), index_(index), tail_(tail) {}
468 size_t GetIndex() const { return index_; }
474 const size_t index_; member in class:art::HUseListNode
674 explicit HInputIterator(HInstruction* instruction) : instruction_(instruction), index_(0) {}
676 bool Done() const { return index_ == instruction_->InputCount(); }
677 HInstruction* Current() const { return instruction_->InputAt(index_); }
678 void Advance() { index_++; }
682 size_t index_; member in class:art::HInputIterator
1239 : HExpression(parameter_type), index_(index) {}
1241 uint8_t GetIndex() const { return index_; }
1248 const uint8_t index_; member in class:art::HParameterValue
1464 const size_t index_; member in class:art::HTemporary
1587 size_t index_; member in class:art::HInsertionOrderIterator
1602 size_t index_; member in class:art::HReversePostOrderIterator
1618 size_t index_; member in class:art::HPostOrderIterator
[all...]
/art/compiler/dex/quick/
H A Dgen_common.cc89 index_(index), length_(length) {
96 m2l_->CallRuntimeHelperRegReg(kQuickThrowArrayBounds, index_, length_, true);
100 const RegStorage index_; member in class:art::ArrayBoundsCheckSlowPath
113 index_(index), length_(length) {
125 m2l_->LoadConstant(arg0_32, index_);
130 const int32_t index_; member in class:art::ArrayBoundsCheckSlowPath
/art/compiler/dex/quick/x86/
H A Dint_x86.cc1148 index_(index), array_base_(array_base), len_offset_(len_offset) {
1156 RegStorage new_index = index_;
1159 if (index_ == m2l_->TargetReg(kArg1, kNotWide)) {
1161 m2l_->OpRegCopy(m2l_->TargetReg(kArg2, kNotWide), index_);
1164 m2l_->OpRegCopy(m2l_->TargetReg(kArg0, kNotWide), index_);
1176 const RegStorage index_; member in class:art::ArrayBoundsCheckSlowPath
1196 index_(index), array_base_(array_base), len_offset_(len_offset) {
1207 x86_m2l->LoadConstant(m2l_->TargetReg(kArg0, kNotWide), index_);
1213 const int32_t index_; member in class:art::ArrayBoundsCheckSlowPath
/art/compiler/
H A Dimage_writer.cc464 : strings_(strings), index_(index) {
469 collector->strings_->SetWithoutChecks<false>(collector->index_++, obj->AsString());
473 return index_;
478 size_t index_; member in class:art::StringCollector
/art/runtime/
H A Delf_file.cc1377 const uint32_t index_; member in class:art::DebugTag
1445 explicit DebugTag(uint32_t index) : index_(index), size_(0), tag_(0), has_child_(false) {}
1469 abbrev->tags_.insert(std::pair<uint32_t, uint32_t>(tag->index_, abbrev->tag_list_.size()));
/art/compiler/driver/
H A Dcompiler_driver.cc1456 : index_(0),
1492 index_.StoreRelaxed(begin);
1507 return index_.FetchAndAddSequentiallyConsistent(1);
1539 AtomicInteger index_; member in class:art::ParallelCompilationManager

Completed in 420 milliseconds