Home
last modified time | relevance | path

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

/art/runtime/gc/accounting/
Datomic_stack.h48 front_index_ = 0; in Reset()
87 DCHECK_GT(back_index_, front_index_); in PopBack()
95 int32_t index = front_index_; in PopFront()
97 front_index_ = front_index_ + 1; in PopFront()
112 DCHECK_LE(front_index_, back_index_); in Size()
113 return back_index_ - front_index_; in Size()
117 return const_cast<T*>(begin_ + front_index_); in Begin()
136 int32_t start_front_index = front_index_.load(); in Sort()
139 CHECK_EQ(start_front_index, front_index_.load()); in Sort()
158 front_index_(0), in AtomicStack()
[all …]