Lines Matching refs:mremap
358 If true realloc() uses mremap() to re-allocate large blocks and
1324 /* On some versions of linux, mremap decl in mman.h needs __USE_GNU set */
1547 #define MREMAP_DEFAULT(addr, osz, nsz, mv) mremap((addr), (osz), (nsz), (mv))
1601 #ifdef MREMAP
1602 #define CALL_MREMAP(addr, osz, nsz, mv) MREMAP((addr), (osz), (nsz), (mv))
1603 #else /* MREMAP */
1605 #endif /* MREMAP */
4140 /* Prefer mremap, fall back to munmap */
5627 * Add linux mremap support code from HJ Liu