HomeSort by relevance Sort by last modified time
    Searched refs:back_index_ (Results 1 - 2 of 2) sorted by null

  /art/runtime/base/
bounded_fifo.h 37 back_index_ = 0;
53 data_[back_index_++ & mask_] = value;
58 return data_[(back_index_ - size_) & mask_];
68 size_t back_index_, size_; member in class:art::BoundedFifoPowerOfTwo
  /art/runtime/gc/accounting/
atomic_stack.h 49 back_index_ = 0;
66 index = back_index_;
71 } while (!back_index_.compare_and_swap(index, index + 1));
80 int32_t index = back_index_;
82 back_index_ = index + 1;
87 DCHECK_GT(back_index_, front_index_);
89 back_index_ = back_index_ - 1;
90 return begin_[back_index_];
96 DCHECK_LT(index, back_index_.load())
182 AtomicInteger back_index_; member in class:art::gc::accounting::AtomicStack
    [all...]

Completed in 55 milliseconds