Home
last modified time | relevance | path

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

/art/runtime/gc/accounting/
Datomic_stack.h49 front_index_.StoreRelaxed(0); in Reset()
114 DCHECK_GT(back_index_.LoadRelaxed(), front_index_.LoadRelaxed()); in PopBack()
122 int32_t index = front_index_.LoadRelaxed(); in PopFront()
124 front_index_.StoreRelaxed(index + 1); in PopFront()
139 DCHECK_LE(front_index_.LoadRelaxed(), back_index_.LoadRelaxed()); in Size()
140 return back_index_.LoadRelaxed() - front_index_.LoadRelaxed(); in Size()
144 return const_cast<T*>(begin_ + front_index_.LoadRelaxed()); in Begin()
164 int32_t start_front_index = front_index_.LoadRelaxed(); in Sort()
167 CHECK_EQ(start_front_index, front_index_.LoadRelaxed()); in Sort()
186 front_index_(0), in AtomicStack()
[all …]