Home | History | Annotate | Download | only in include

Lines Matching refs:capacity

50    * Total buffer capacity.
52 size_t capacity;
73 * Creates a circular buffer of the specified capacity.
75 * @param capacity the capacity in number of bytes of the data buffer.
79 ESR_SHARED_API ESR_ReturnCode CircularBufferCreate(size_t capacity, const LCHAR* mtag, CircularBuffer** buffer);
82 * Returns the capacity of the buffer.
84 #define CircularBufferGetCapacity(buffer) ((buffer)->capacity + 0)
99 #define CircularBufferIsFull(buffer) ((buffer)->size == (buffer)->capacity)
109 * Determines the residual capacity of the circular buffer.
111 #define CircularBufferGetAvailable(buffer) ((buffer)->capacity - (buffer)->size)
146 * an error, while a value less than bufSize indicates that buffer capacity is