Home
last modified time | relevance | path

Searched refs:idx_ (Results 1 – 4 of 4) sorted by relevance

/art/compiler/dex/
Ddataflow_iterator-inl.h29 if (idx_ < end_idx_) { in ForwardSingleNext()
31 BasicBlockId bb_id = (*block_id_list_)[idx_]; in ForwardSingleNext()
33 idx_++; in ForwardSingleNext()
44 if ((idx_ >= end_idx_) && changed_ == true) { in ForwardRepeatNext()
46 idx_ = start_idx_; in ForwardRepeatNext()
52 if (idx_ < end_idx_) { in ForwardRepeatNext()
54 BasicBlockId bb_id = (*block_id_list_)[idx_]; in ForwardRepeatNext()
56 idx_++; in ForwardRepeatNext()
67 if (idx_ >= 0) { in ReverseSingleNext()
69 BasicBlockId bb_id = (*block_id_list_)[idx_]; in ReverseSingleNext()
[all …]
Ddataflow_iterator.h76 idx_(0), in DataflowIterator()
108 … int32_t idx_; /**< @brief Current index for the iterator */ variable
126 idx_ = start_idx_; in PreOrderDfsIterator()
157 idx_ = start_idx_; in RepeatingPreOrderDfsIterator()
188 idx_ = start_idx_; in RepeatingPostOrderDfsIterator()
218 idx_ = start_idx_; in ReversePostOrderDfsIterator()
249 idx_ = start_idx_; in RepeatingReversePostOrderDfsIterator()
279 idx_ = start_idx_; in PostOrderDOMIterator()
314 idx_ = 0; in Reset()
340 idx_ = start_idx_; in TopologicalSortIterator()
[all …]
/art/runtime/gc/space/
Dregion_space.h234 : idx_(static_cast<size_t>(-1)), in Region()
241 : idx_(idx), begin_(begin), top_(begin), end_(end), in Region()
337 return idx_; in Idx()
462 size_t idx_; // The region's index in the region space.
Dregion_space.cc411 …os << "Region[" << idx_ << "]=" << reinterpret_cast<void*>(begin_) << "-" << reinterpret_cast<void… in Dump()