Lines Matching full:realloc
3196 " This is a version (aka dlmalloc) of malloc/free/realloc written by\n" +
3260 " realloc(Void_t* p, size_t n);\n" +
3454 " return realloc(p, n);\n" +
3668 " realloc with zero bytes should be the same as a call to free.\n" +
3670 " returns a unique pointer for malloc(0), so does realloc(p, 0).\n" +
3746 "#define rEALLOc public_rEALLOc\n" +
3780 "#define public_rEALLOc realloc\n" +
3796 " and want to use them in calloc and realloc. Otherwise simple\n" +
3804 " (of <= 36 bytes) are manually unrolled in realloc and calloc.\n" +
3968 " Define HAVE_MREMAP to make realloc() use mremap() to re-allocate\n" +
4130 " allocated using malloc or a related routine such as realloc.\n" +
4156 " realloc(Void_t* p, size_t n)\n" +
4165 " If p is null, realloc is equivalent to malloc.\n" +
4167 " If space is not available, realloc returns null, errno is set (if on\n" +
4172 " REALLOC_ZERO_BYTES_FREES is set, realloc with a size argument of\n" +
4179 " The old unix realloc convention of allowing the last-free'd chunk\n" +
4180 " to be used as an argument to realloc is not supported.\n" +
4283 " realloc'ed etc. The elements are guaranteed to be adjacently\n" +
4340 " independently freed, realloc'ed etc. The elements are guaranteed to\n" +
4481 " number of bytes allocated via malloc (or realloc, etc) but not yet\n" +
4727 "static Void_t* rEALLOc(Void_t*, size_t);\n" +
4743 "static Void_t* rEALLOc();\n" +
4842 " scheduled_free_list = (Void_t**)realloc(scheduled_free_list, sizeof(Void_t*) * scheduled_free_capacity);\n" +
4870 " m = rEALLOc(m, bytes);\n" +
6220 " address argument for later munmap in free() and realloc().\n" +
7272 " ------------------------------ realloc ------------------------------\n" +
7277 "Void_t* rEALLOc(Void_t* oldmem, size_t bytes)\n" +
7279 "Void_t* rEALLOc(oldmem, bytes) Void_t* oldmem; size_t bytes;\n" +
7315 " /* realloc of null is supposed to be same as malloc */\n" +
7787 " we would not be able to later free/realloc space internal\n" +