Searched defs:oldmem (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dxmalloc.c43 (/*@only@*/ /*@out@*/ /*@returned@*/ /*@null@*/ void *oldmem, size_t size)
44 /*@modifies oldmem@*/;
55 (/*@only@*/ /*@out@*/ /*@returned@*/ /*@null@*/ void *oldmem, size_t size)
56 /*@modifies oldmem@*/ = def_xrealloc;
92 def_xrealloc(void *oldmem, size_t size) argument
98 if (!oldmem)
101 newmem = realloc(oldmem, size);
/external/eigen/unsupported/test/mpreal/
H A Ddlmalloc.c4299 static void* internal_realloc(mstate m, void* oldmem, size_t bytes) { argument
4305 mchunkptr oldp = mem2chunk(oldmem);
4341 USAGE_ERROR_ACTION(m, oldmem);
4363 memcpy(newmem, oldmem, (oc < bytes)? oc : bytes);
4364 internal_free(m, oldmem);
4853 void* dlrealloc(void* oldmem, size_t bytes) { argument
4854 if (oldmem == 0)
4858 dlfree(oldmem);
4866 mstate m = get_mstate_for(mem2chunk(oldmem));
4868 USAGE_ERROR_ACTION(m, oldmem);
5285 mspace_realloc(mspace msp, void* oldmem, size_t bytes) argument
[all...]
/external/libffi/src/
H A Ddlmalloc.c3772 static void* internal_realloc(mstate m, void* oldmem, size_t bytes) { argument
3778 mchunkptr oldp = mem2chunk(oldmem);
3814 USAGE_ERROR_ACTION(m, oldmem);
3832 memcpy(newmem, oldmem, (oc < bytes)? oc : bytes);
3833 internal_free(m, oldmem);
4308 void* dlrealloc(void* oldmem, size_t bytes) { argument
4309 if (oldmem == 0)
4313 dlfree(oldmem);
4321 mstate m = get_mstate_for(mem2chunk(oldmem));
4323 USAGE_ERROR_ACTION(m, oldmem);
4711 mspace_realloc(mspace msp, void* oldmem, size_t bytes) argument
[all...]
/external/qemu/distrib/sdl-1.2.15/src/stdlib/
H A DSDL_malloc.c3782 static void* internal_realloc(mstate m, void* oldmem, size_t bytes) { argument
3788 mchunkptr oldp = mem2chunk(oldmem);
3824 USAGE_ERROR_ACTION(m, oldmem);
3842 memcpy(newmem, oldmem, (oc < bytes)? oc : bytes);
3843 internal_free(m, oldmem);
4318 void* dlrealloc(void* oldmem, size_t bytes) { argument
4319 if (oldmem == 0)
4323 dlfree(oldmem);
4331 mstate m = get_mstate_for(mem2chunk(oldmem));
4333 USAGE_ERROR_ACTION(m, oldmem);
4721 mspace_realloc(mspace msp, void* oldmem, size_t bytes) argument
[all...]

Completed in 112 milliseconds