Searched refs:realloc (Results 1 - 25 of 39) sorted by relevance

12

/fuchsia/zircon/third_party/ulib/musl/include/
H A Dmalloc.h13 void* realloc(void*, size_t);
H A Dstdlib.h34 void* realloc(void*, size_t);
/fuchsia/zircon/system/utest/stdio/
H A Dutil.c39 *buf = realloc(*buf, *buf_size);
46 *buf = realloc(*buf, *buf_size);
/fuchsia/zircon/third_party/ulib/jemalloc/test/integration/
H A Doverflow.c35 assert_ptr_null(realloc(p, max_size_class + 1),
37 assert_ptr_null(realloc(p, SIZE_T_MAX),
/fuchsia/zircon/third_party/ulib/jemalloc/include/jemalloc/
H A Djemalloc_rename.h13 # define je_realloc realloc
H A Djemalloc_mangle.h18 # define realloc je_realloc macro
H A Djemalloc_mangle_jet.h18 # define realloc jet_realloc macro
/fuchsia/zircon/kernel/lib/heap/include/lib/
H A Dheap.h23 void *realloc(void *ptr, size_t size);
/fuchsia/zircon/system/uapp/psutils/
H A Dvmo-utils.c26 vmos = (zx_info_vmo_t*)realloc(vmos, count * sizeof(zx_info_vmo_t));
/fuchsia/zircon/third_party/ulib/jemalloc/include/jemalloc/internal/
H A Dpublic_namespace.h7 #define je_realloc JEMALLOC_N(realloc)
/fuchsia/zircon/third_party/ulib/backtrace/
H A Dalloc.c101 base = realloc (vec->base, alc);
104 error_callback (data, "realloc", errno);
128 /* With this allocator we call realloc in backtrace_vector_grow,
148 vec->base = realloc (vec->base, vec->size);
151 error_callback (data, "realloc", errno);
/fuchsia/zircon/third_party/ulib/musl/src/stdio/
H A Dgetdelim.c36 tmp = realloc(*s, m);
39 tmp = realloc(*s, m);
H A Dopen_wmemstream.c40 newbuf = realloc(c->buf, len2 * 4);
H A Dopen_memstream.c40 newbuf = realloc(c->buf, len2);
H A Dvfwscanf.c291 wchar_t* tmp = realloc(wcs, k * sizeof(wchar_t));
303 char* tmp = realloc(s, k);
H A Dvfscanf.c267 wchar_t* tmp = realloc(wcs, k * sizeof(wchar_t));
283 char* tmp = realloc(s, k);
/fuchsia/zircon/third_party/ulib/musl/src/dirent/
H A Dscandir.c25 tmp = realloc(names, len * sizeof *names);
/fuchsia/zircon/third_party/ulib/musl/src/env/
H A Dputenv.c31 newmap = realloc(__env_map, sizeof(char*) * (j + 2));
/fuchsia/zircon/third_party/ulib/musl/src/passwd/
H A Dgetgr_a.c99 char* tmp = realloc(*buf, len);
118 char** tmp = realloc(*mem, (groupbuf[GRMEMCNT] + 1) * sizeof(char*));
/fuchsia/zircon/third_party/ulib/jemalloc/src/
H A Dzone.c18 void *(*realloc)(struct _malloc_zone_t *, void *, size_t); member in struct:_malloc_zone_t
181 return (realloc(ptr, size));
335 jemalloc_zone.realloc = zone_realloc;
/fuchsia/zircon/third_party/ulib/jemalloc/test/unit/
H A Ddecay.c86 /* realloc(). */
89 p = realloc(NULL, large0);
90 assert_ptr_not_null(p, "Unexpected realloc() failure");
92 assert_u32_ne(tick1, tick0, "Expected ticker to tick during realloc()");
95 p = realloc(p, large0);
96 assert_ptr_not_null(p, "Unexpected realloc() failure");
98 assert_u32_ne(tick1, tick0, "Expected ticker to tick during realloc()");
101 realloc(p, 0);
103 assert_u32_ne(tick1, tick0, "Expected ticker to tick during realloc()");
/fuchsia/zircon/third_party/lib/acpica/source/compiler/
H A Daslutils.c695 Gbl_CurrentLineBuffer = realloc (Gbl_CurrentLineBuffer, NewSize);
702 Gbl_MainTokenBuffer = realloc (Gbl_MainTokenBuffer, NewSize);
708 Gbl_MacroTokenBuffer = realloc (Gbl_MacroTokenBuffer, NewSize);
714 Gbl_ExpressionTokenBuffer = realloc (Gbl_ExpressionTokenBuffer, NewSize);
/fuchsia/zircon/third_party/ulib/musl/src/misc/
H A Dwordexp.c151 tmp = realloc(wv, l * sizeof(char*));
/fuchsia/zircon/third_party/uapp/dash/src/
H A Dmemalloc.c63 * Same for realloc.
69 p = realloc(p, nbytes);
200 * possibly moving it (like realloc). Grabstackblock actually allocates the
/fuchsia/zircon/third_party/ulib/musl/src/network/
H A Dif_nameindex.c65 map = realloc(ctx->list, a * sizeof *map);

Completed in 198 milliseconds

12