Lines Matching defs:new
136 /* This function returns true if the interval [old,new]
142 static int traverses_stack_p(uintptr_t old, uintptr_t new)
149 if (new>a && old<b) return 1;
153 if (new>a && old<b) return 1;
222 * new sentinel chunk below the allocated space. */
234 /* Record new heap end and fill in footer. */
240 /* Fill in header, which may be new or may be replacing a
410 void *new;
439 if (newlen < PAGE_SIZE && (new = malloc(n-OVERHEAD))) {
512 /* As a last resort, allocate a new chunk and copy to it. */
513 new = malloc(n-OVERHEAD);
514 if (!new) return 0;
516 memcpy(new, p, (n<n0 ? n : n0) - OVERHEAD);
518 return new;