Searched refs:new_brk (Results 1 – 1 of 1) sorted by relevance
1709 char* new_brk; /* return of 2nd sbrk call */ in malloc_extend_top() local1768 new_brk = (char*)(MORECORE (correction)); in malloc_extend_top()1769 if (new_brk == (char*)(MORECORE_FAILURE)) in malloc_extend_top()1773 new_brk = brk + sbrk_size; in malloc_extend_top()1775 new_brk -= (MALLOC_ALIGNMENT) - front_misalign; in malloc_extend_top()1781 top_size = new_brk - brk + correction; in malloc_extend_top()2863 char* new_brk; /* address returned by negative sbrk call */ in malloc_trim() local2890 new_brk = (char*)(MORECORE (-extra)); in malloc_trim()2892 if (new_brk == (char*)(MORECORE_FAILURE)) /* sbrk failed? */ in malloc_trim()