Home
last modified time | relevance | path

Searched refs:buf_alloc_sz (Results 1 – 2 of 2) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
Dvpxstats.c47 stats->buf.sz = stats->buf_alloc_sz = ftell(stats->file); in stats_open_file()
50 stats->buf.buf = malloc(stats->buf_alloc_sz); in stats_open_file()
54 (unsigned int)stats->buf_alloc_sz); in stats_open_file()
70 stats->buf_alloc_sz = 64 * 1024; in stats_open_mem()
71 stats->buf.buf = malloc(stats->buf_alloc_sz); in stats_open_mem()
101 if (stats->buf.sz + len > stats->buf_alloc_sz) { in stats_write()
102 size_t new_sz = stats->buf_alloc_sz + 64 * 1024; in stats_write()
108 stats->buf_alloc_sz = new_sz; in stats_write()
Dvpxstats.h30 size_t buf_alloc_sz; member