Home
last modified time | relevance | path

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

/art/runtime/gc/accounting/
Datomic_stack.h77 front_index_.store(0, std::memory_order_relaxed); in Reset()
145 front_index_.load(std::memory_order_relaxed)); in PopBack()
153 int32_t index = front_index_.load(std::memory_order_relaxed); in PopFront()
155 front_index_.store(index + 1, std::memory_order_relaxed); in PopFront()
174 DCHECK_LE(front_index_.load(std::memory_order_relaxed), in Size()
177 back_index_.load(std::memory_order_relaxed) - front_index_.load(std::memory_order_relaxed); in Size()
181 return begin_ + front_index_.load(std::memory_order_relaxed); in Begin()
200 int32_t start_front_index = front_index_.load(std::memory_order_relaxed); in Sort()
203 CHECK_EQ(start_front_index, front_index_.load(std::memory_order_relaxed)); in Sort()
227 front_index_(0), in AtomicStack()
[all …]