Searched defs:RingBuffer (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/libs/hwui/utils/
H A DRingBuffer.h27 class RingBuffer { class in namespace:android::uirenderer
28 PREVENT_COPY_AND_ASSIGN(RingBuffer);
31 RingBuffer() {} function in class:android::uirenderer::RingBuffer
32 ~RingBuffer() {}
/frameworks/av/include/media/
H A DRingBuffer.h31 * A RingBuffer class that maintains an array of objects that can grow up to a certain size.
32 * Elements added to the RingBuffer are inserted in the logical front of the buffer, and
33 * invalidate all current iterators for that RingBuffer object.
36 class RingBuffer final {
40 * Construct a RingBuffer that can grow up to the given length.
42 RingBuffer(size_t length);
97 * Adds item to the front of this RingBuffer. If the RingBuffer is at its maximum length,
106 * Moves item to the front of this RingBuffer. Following a call to this, item should no
107 * longer be used. If the RingBuffer i
174 RingBuffer<T>::RingBuffer(size_t length) : mFrontIdx{0}, mMaxBufferSize{length} {} function in class:android::RingBuffer
[all...]
/frameworks/native/services/sensorservice/
H A DRingBuffer.h31 * A RingBuffer class that maintains an array of objects that can grow up to a certain size.
32 * Elements added to the RingBuffer are inserted in the logical front of the buffer, and
33 * invalidate all current iterators for that RingBuffer object.
36 class RingBuffer final {
40 * Construct a RingBuffer that can grow up to the given length.
42 RingBuffer(size_t length);
97 * Adds item to the front of this RingBuffer. If the RingBuffer is at its maximum length,
106 * Moves item to the front of this RingBuffer. Following a call to this, item should no
107 * longer be used. If the RingBuffer i
174 RingBuffer<T>::RingBuffer(size_t length) : mFrontIdx{0}, mMaxBufferSize{length} {} function in class:android::SensorServiceUtil::RingBuffer
[all...]

Completed in 218 milliseconds