Searched refs:oldmem (Results 1 - 4 of 4) sorted by last modified time

/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...]
/external/clang/lib/ARCMigrate/
H A DFileRemapper.cpp247 if (llvm::MemoryBuffer *oldmem = targ.dyn_cast<llvm::MemoryBuffer *>()) {
248 delete oldmem;
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dcoretype.h376 * \param oldmem memory block to resize
382 (/*@only@*/ /*@out@*/ /*@returned@*/ /*@null@*/ void *oldmem, size_t size)
383 /*@modifies oldmem@*/;
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);

Completed in 178 milliseconds