Home
last modified time | relevance | path

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

/hardware/google/aemu/base/include/aemu/base/containers/
DCircularBuffer.h38 mBuf(capacity), mSize(0), mFrontIdx(0), mBackIdx(0) { in CircularBuffer()
48 mBuf[mBackIdx] = std::forward<U>(value); in push_back()
91 mBackIdx -= 1; in pop_back()
92 if (mBackIdx < 0) mBackIdx = mBuf.size() - 1; in pop_back()
125 mBackIdx = (mBackIdx + 1) % mBuf.size(); in incrementBackIdx()
140 int mBackIdx; variable