Lines Matching defs:f
50 AVFifo *f; in av_fifo_alloc2() local
77 void av_fifo_auto_grow_limit(AVFifo *f, size_t max_elems) in av_fifo_auto_grow_limit()
82 size_t av_fifo_elem_size(const AVFifo *f) in av_fifo_elem_size()
87 size_t av_fifo_can_read(const AVFifo *f) in av_fifo_can_read()
94 size_t av_fifo_can_write(const AVFifo *f) in av_fifo_can_write()
99 int av_fifo_grow2(AVFifo *f, size_t inc) in av_fifo_grow2()
129 static int fifo_check_space(AVFifo *f, size_t to_write) in fifo_check_space()
149 static int fifo_write_common(AVFifo *f, const uint8_t *buf, size_t *nb_elems, in fifo_write_common()
188 int av_fifo_write(AVFifo *f, const void *buf, size_t nb_elems) in av_fifo_write()
193 int av_fifo_write_from_cb(AVFifo *f, AVFifoCB read_cb, in av_fifo_write_from_cb()
199 static int fifo_peek_common(const AVFifo *f, uint8_t *buf, size_t *nb_elems, in fifo_peek_common()
240 int av_fifo_read(AVFifo *f, void *buf, size_t nb_elems) in av_fifo_read()
247 int av_fifo_read_to_cb(AVFifo *f, AVFifoCB write_cb, in av_fifo_read_to_cb()
255 int av_fifo_peek(AVFifo *f, void *buf, size_t nb_elems, size_t offset) in av_fifo_peek()
260 int av_fifo_peek_to_cb(AVFifo *f, AVFifoCB write_cb, void *opaque, in av_fifo_peek_to_cb()
266 void av_fifo_drain2(AVFifo *f, size_t size) in av_fifo_drain2()
280 void av_fifo_reset2(AVFifo *f) in av_fifo_reset2()
286 void av_fifo_freep2(AVFifo **f) in av_fifo_freep2()
301 AVFifoBuffer *f; in av_fifo_alloc_array() local
326 void av_fifo_free(AVFifoBuffer *f) in av_fifo_free()
334 void av_fifo_freep(AVFifoBuffer **f) in av_fifo_freep()
342 void av_fifo_reset(AVFifoBuffer *f) in av_fifo_reset()
348 int av_fifo_size(const AVFifoBuffer *f) in av_fifo_size()
353 int av_fifo_space(const AVFifoBuffer *f) in av_fifo_space()
358 int av_fifo_realloc2(AVFifoBuffer *f, unsigned int new_size) in av_fifo_realloc2()
395 int av_fifo_grow(AVFifoBuffer *f, unsigned int size) in av_fifo_grow()
410 int av_fifo_generic_write(AVFifoBuffer *f, void *src, int size, in av_fifo_generic_write()
441 int av_fifo_generic_peek_at(AVFifoBuffer *f, void *dest, int offset, int buf_size, void (*func)(voi… in av_fifo_generic_peek_at()
474 int av_fifo_generic_peek(AVFifoBuffer *f, void *dest, int buf_size, in av_fifo_generic_peek()
480 int av_fifo_generic_read(AVFifoBuffer *f, void *dest, int buf_size, in av_fifo_generic_read()
501 void av_fifo_drain(AVFifoBuffer *f, int size) in av_fifo_drain()