Lines Matching refs:RingBuffer
35 class RingBuffer class
38 RingBuffer (int size);
39 ~RingBuffer (void);
70 RingBuffer<T>::RingBuffer (int size) in RingBuffer() function in de::RingBuffer
81 RingBuffer<T>::~RingBuffer () in ~RingBuffer()
87 void RingBuffer<T>::clear (void) in clear()
95 void RingBuffer<T>::resize (int newSize) in resize()
122 inline void RingBuffer<T>::pushFront (const T& elem) in pushFront()
131 void RingBuffer<T>::pushFront (const T* elemBuf, int count) in pushFront()
141 inline T RingBuffer<T>::popBack () in popBack()
151 inline T RingBuffer<T>::peekBack (int offset) const in peekBack()
158 void RingBuffer<T>::peekBack (T* elemBuf, int count) const in peekBack()
166 void RingBuffer<T>::popBack (int count) in popBack()