HomeSort by relevance Sort by last modified time
    Searched defs:RingBuffer (Results 1 - 10 of 10) sorted by null

  /external/webrtc/webrtc/common_audio/
ring_buffer.h 23 typedef struct RingBuffer RingBuffer;
26 RingBuffer* WebRtc_CreateBuffer(size_t element_count, size_t element_size);
27 void WebRtc_InitBuffer(RingBuffer* handle);
40 size_t WebRtc_ReadBuffer(RingBuffer* handle,
46 size_t WebRtc_WriteBuffer(RingBuffer* handle, const void* data,
54 int WebRtc_MoveReadPtr(RingBuffer* handle, int element_count);
57 size_t WebRtc_available_read(const RingBuffer* handle);
60 size_t WebRtc_available_write(const RingBuffer* handle);
ring_buffer.c 25 struct RingBuffer {
39 static size_t GetBufferReadRegions(RingBuffer* buf,
68 RingBuffer* WebRtc_CreateBuffer(size_t element_count, size_t element_size) {
69 RingBuffer* self = NULL;
74 self = malloc(sizeof(RingBuffer));
93 void WebRtc_InitBuffer(RingBuffer* self) {
103 RingBuffer* self = (RingBuffer*)handle;
112 size_t WebRtc_ReadBuffer(RingBuffer* self,
158 size_t WebRtc_WriteBuffer(RingBuffer* self
    [all...]
  /device/google/contexthub/util/common/
ring.cpp 28 RingBuffer::RingBuffer(size_t size)
35 RingBuffer::~RingBuffer() {
40 ssize_t RingBuffer::write(const sensors_event_t *ev, size_t size) {
72 ssize_t RingBuffer::read(sensors_event_t *ev, size_t size) {
ring.h 28 struct RingBuffer {
29 explicit RingBuffer(size_t size);
30 ~RingBuffer();
43 DISALLOW_EVIL_CONSTRUCTORS(RingBuffer);
  /frameworks/base/libs/hwui/utils/
RingBuffer.h 27 class RingBuffer {
28 PREVENT_COPY_AND_ASSIGN(RingBuffer);
31 RingBuffer() {}
32 ~RingBuffer() {}
  /external/deqp/framework/delibs/decpp/
deRingBuffer.hpp 35 class RingBuffer
38 RingBuffer (int size);
39 ~RingBuffer (void);
67 // RingBuffer implementation.
70 RingBuffer<T>::RingBuffer (int size)
81 RingBuffer<T>::~RingBuffer ()
87 void RingBuffer<T>::clear (void)
95 void RingBuffer<T>::resize (int newSize
    [all...]
  /frameworks/av/include/media/
RingBuffer.h 31 * 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 is at its maximum length, this will result in th
    [all...]
  /packages/apps/Camera2/src/com/android/camera/burst/
RingBuffer.java 28 * A RingBuffer that is used during burst capture. It takes a
32 class RingBuffer<T extends ImageProxy> implements SafeCloseable {
43 public RingBuffer(int maxCapacity, EvictionHandler evictionHandler) {
  /frameworks/native/services/sensorservice/
RingBuffer.h 31 * 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 is at its maximum length, this will result in th
    [all...]
  /external/v8/src/heap/
gc-tracer.h 17 class RingBuffer {
55 RingBuffer() : begin_(0), end_(0) {}
85 DISALLOW_COPY_AND_ASSIGN(RingBuffer);
312 typedef RingBuffer<Event, kRingBufferMaxSize> EventBuffer;
314 typedef RingBuffer<AllocationEvent, kRingBufferMaxSize> AllocationEventBuffer;
316 typedef RingBuffer<ContextDisposalEvent, kRingBufferMaxSize>
319 typedef RingBuffer<CompactionEvent, kRingBufferMaxSize> CompactionEventBuffer;
321 typedef RingBuffer<SurvivalEvent, kRingBufferMaxSize> SurvivalEventBuffer;
531 // RingBuffer for allocation events.
535 // RingBuffer for context disposal events
    [all...]

Completed in 1413 milliseconds