Home
last modified time | relevance | path

Searched refs:new_sz (Results 1 – 4 of 4) sorted by relevance

/external/libaom/libaom/stats/
Daomstats.c88 size_t new_sz = stats->buf_alloc_sz + 64 * 1024; in stats_write() local
89 char *new_ptr = realloc(stats->buf.buf, new_sz); in stats_write()
94 stats->buf_alloc_sz = new_sz; in stats_write()
/external/libvpx/libvpx/
Dvpxstats.c87 size_t new_sz = stats->buf_alloc_sz + 64 * 1024; in stats_write() local
88 char *new_ptr = realloc(stats->buf.buf, new_sz); in stats_write()
93 stats->buf_alloc_sz = new_sz; in stats_write()
/external/u-boot/tools/
Dmips-relocs.c112 size_t new_sz; in add_reloc() local
130 new_sz = relocs_sz ? relocs_sz * 2 : 128; in add_reloc()
131 new = realloc(relocs, new_sz * sizeof(*relocs)); in add_reloc()
138 relocs_sz = new_sz; in add_reloc()
/external/dtc/
Dfdtput.c135 int new_sz = fdt_totalsize(fdt) + delta; in _realloc_fdt() local
136 fdt = xrealloc(fdt, new_sz); in _realloc_fdt()
137 fdt_open_into(fdt, fdt, new_sz); in _realloc_fdt()