Lines Matching refs:BlockBuffer
47 class BlockBuffer class
52 BlockBuffer (int blockSize, int numBlocks);
53 ~BlockBuffer (void);
69 BlockBuffer (const BlockBuffer& other);
70 BlockBuffer& operator= (const BlockBuffer& other);
99 BlockBuffer<T>::BlockBuffer (int blockSize, int numBlocks) in BlockBuffer() function in de::BlockBuffer
135 BlockBuffer<T>::~BlockBuffer (void) in ~BlockBuffer()
145 void BlockBuffer<T>::clear (void) in clear()
165 void BlockBuffer<T>::cancel (void) in cancel()
175 int BlockBuffer<T>::writeToCurrentBlock (int numElements, const T* elements, bool blocking) in writeToCurrentBlock()
218 int BlockBuffer<T>::readFromCurrentBlock (int numElements, T* elements, bool blocking) in readFromCurrentBlock()
267 int BlockBuffer<T>::tryWrite (int numElements, const T* elements) in tryWrite()
295 void BlockBuffer<T>::write (int numElements, const T* elements) in write()
312 void BlockBuffer<T>::flush (void) in flush()
323 bool BlockBuffer<T>::tryFlush (void) in tryFlush()
337 void BlockBuffer<T>::flushWriteBlock (void) in flushWriteBlock()
348 int BlockBuffer<T>::tryRead (int numElements, T* elements) in tryRead()
374 void BlockBuffer<T>::read (int numElements, T* elements) in read()