Searched refs:elemBuf (Results 1 – 1 of 1) sorted by relevance
49 void pushFront (const T* elemBuf, int count);51 void peekBack (T* elemBuf, int count) const;55 void popBack (T* elemBuf, int count) { peekBack(elemBuf, count); popBack(count); } in popBack() argument131 void RingBuffer<T>::pushFront (const T* elemBuf, int count) in pushFront() argument135 m_buffer[(m_front + i) % m_size] = elemBuf[i]; in pushFront()158 void RingBuffer<T>::peekBack (T* elemBuf, int count) const in peekBack() argument162 elemBuf[i] = m_buffer[(m_back + i) % m_size]; in peekBack()