Home | History | Annotate | Download | only in decpp

Lines Matching refs:elem

45 	void			pushFront				(const T& elem);
46 bool tryPushFront (const T& elem);
51 void pushFrontInternal (const T& elem);
83 inline void ThreadSafeRingBuffer<T>::pushFrontInternal (const T& elem)
85 m_elements[m_front] = elem;
98 void ThreadSafeRingBuffer<T>::pushFront (const T& elem)
102 pushFrontInternal(elem);
108 bool ThreadSafeRingBuffer<T>::tryPushFront (const T& elem)
117 pushFrontInternal(elem);
130 T elem = popBackInternal();
133 return elem;