Home
last modified time | relevance | path

Searched refs:oldmem (Results 1 – 6 of 6) sorted by relevance

/NextBSD/contrib/binutils/libiberty/
HDxmalloc.c170 xrealloc (PTR oldmem, size_t size) in xrealloc() argument
176 if (!oldmem) in xrealloc()
179 newmem = realloc (oldmem, size); in xrealloc()
HDChangeLog6404 (xrealloc): If oldmem is NULL, allocate with malloc, rather than
/NextBSD/contrib/gcclibs/libiberty/
HDxmalloc.c170 xrealloc (PTR oldmem, size_t size) in xrealloc() argument
176 if (!oldmem) in xrealloc()
179 newmem = realloc (oldmem, size); in xrealloc()
HDChangeLog6206 (xrealloc): If oldmem is NULL, allocate with malloc, rather than
/NextBSD/sys/contrib/octeon-sdk/cvmx-malloc/
HDmalloc.c1499 static Void_t* realloc_check(Void_t* oldmem, size_t bytes,
2744 public_rEALLOc(cvmx_arena_list_t arena_list, Void_t* oldmem, size_t bytes) in public_rEALLOc() argument
2756 if (bytes == 0 && oldmem != NULL) { public_fREe(oldmem); return 0; } in public_rEALLOc()
2760 if (oldmem == 0) return public_mALLOc(arena_list, bytes); in public_rEALLOc()
2762 oldp = mem2chunk(oldmem); in public_rEALLOc()
2772 newp = _int_realloc(ar_ptr, oldmem, bytes); in public_rEALLOc()
3524 _int_realloc(mstate av, Void_t* oldmem, size_t bytes) in _int_realloc() argument
3551 _int_free(av, oldmem); in _int_realloc()
3557 if (oldmem == 0) return _int_malloc(av, bytes); in _int_realloc()
3561 oldp = mem2chunk(oldmem); in _int_realloc()
[all …]
/NextBSD/contrib/llvm/tools/clang/lib/ARCMigrate/
HDFileRemapper.cpp245 if (llvm::MemoryBuffer *oldmem = targ.dyn_cast<llvm::MemoryBuffer *>()) { in resetTarget() local
246 delete oldmem; in resetTarget()