Lines Matching defs:buf
33 #define av_bprint_room(buf) ((buf)->size - FFMIN((buf)->len, (buf)->size)) argument
34 #define av_bprint_is_allocated(buf) ((buf)->str != (buf)->reserved_internal_buffer) argument
36 static int av_bprint_alloc(AVBPrint *buf, unsigned room) in av_bprint_alloc()
60 static void av_bprint_grow(AVBPrint *buf, unsigned extra_len) in av_bprint_grow()
69 void av_bprint_init(AVBPrint *buf, unsigned size_init, unsigned size_max) in av_bprint_init()
85 void av_bprint_init_for_buffer(AVBPrint *buf, char *buffer, unsigned size) in av_bprint_init_for_buffer()
94 void av_bprintf(AVBPrint *buf, const char *fmt, ...) in av_bprintf()
117 void av_vbprintf(AVBPrint *buf, const char *fmt, va_list vl_arg) in av_vbprintf()
140 void av_bprint_chars(AVBPrint *buf, char c, unsigned n) in av_bprint_chars()
158 void av_bprint_append_data(AVBPrint *buf, const char *data, unsigned size) in av_bprint_append_data()
176 void av_bprint_strftime(AVBPrint *buf, const char *fmt, const struct tm *tm) in av_bprint_strftime()
218 void av_bprint_get_buffer(AVBPrint *buf, unsigned size, in av_bprint_get_buffer()
227 void av_bprint_clear(AVBPrint *buf) in av_bprint_clear()
235 int av_bprint_finalize(AVBPrint *buf, char **ret_str) in av_bprint_finalize()