Searched defs:oldmem (Results 1 - 2 of 2) 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/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 126 milliseconds