Lines Matching refs:elem
43 void pushFront (const T& elem);
44 bool tryPushFront (const T& elem);
49 void pushFrontInternal (const T& elem);
79 inline void ThreadSafeRingBuffer<T>::pushFrontInternal (const T& elem)
81 m_buffer[m_front] = elem;
94 void ThreadSafeRingBuffer<T>::pushFront (const T& elem)
98 pushFrontInternal(elem);
104 bool ThreadSafeRingBuffer<T>::tryPushFront (const T& elem)
111 pushFrontInternal(elem);
123 T elem = popBackInternal();
126 return elem;