Home | History | Annotate | Download | only in upstream-dlmalloc

Lines Matching refs:mremap

395   If true realloc() uses mremap() to re-allocate large blocks and
648 #define _GNU_SOURCE /* Turns on mremap() definition */
1472 /* On some versions of linux, mremap decl in mman.h needs __USE_GNU set */
1705 #define MREMAP_DEFAULT(addr, osz, nsz, mv) mremap((addr), (osz), (nsz), (mv))
1758 #ifdef MREMAP
1759 #define CALL_MREMAP(addr, osz, nsz, mv) MREMAP((addr), (osz), (nsz), (mv))
1760 #else /* MREMAP */
1762 #endif /* MREMAP */
4337 /* Prefer mremap, fall back to munmap */
6234 * Add linux mremap support code from HJ Liu