Lines Matching refs:top_size
1937 INTERNAL_SIZE_T top_size; /* new size of top chunk */
1966 top_size = sbrk_size + old_top_size;
1967 set_head(top, top_size | PREV_INUSE);
1998 top_size = new_brk - brk + correction;
1999 set_head(top, top_size | PREV_INUSE);
2033 assert(((unsigned long)((char*)top + top_size) & (pagesz - 1)) == 0);
2948 long top_size; /* Amount of top-most memory */
2955 top_size = chunksize(top);
2956 extra = ((top_size - pad - MINSIZE + (pagesz-1)) / pagesz - 1) * pagesz;
2965 if (current_brk != (char*)(top) + top_size)
2976 top_size = current_brk - (char*)top;
2977 if (top_size >= (long)MINSIZE) /* if not, we are very very dead! */
2980 set_head(top, top_size | PREV_INUSE);
2989 set_head(top, (top_size - extra) | PREV_INUSE);