Lines Matching full:circular
37 * Generic Circular Buffer implementation.
43 * A circular buffer.
73 * Creates a circular buffer of the specified capacity.
77 * @param buffer The circular buffer to initialize.
109 * Determines the residual capacity of the circular buffer.
114 * Reads requested number of bytes from the circular buffer.
116 * @param buffer The circular buffer to read from.
118 * @param bufSize The number of bytes to read from the circular buffer.
127 * Skips requested number of bytes from the circular buffer.
129 * @param buffer The circular buffer to skip from.
130 * @param bufSize The number of bytes to skip from the circular buffer.
139 * Writes requested number of bytes from the circular buffer.
141 * @param buffer The circular buffer to write to
143 * @param bufSize The number of bytes to write into the circular buffer.
152 * Removes the requested number of bytes from the end of the circular buffer.
154 * @param buffer The circular buffer to write to
155 * @param amoun tThe number of bytes to remove from end of circular buffer.