Lines Matching refs:top_size
1072 INTERNAL_SIZE_T top_size; /* new size of top chunk */ local
1101 top_size = sbrk_size + old_top_size;
1102 set_head(top, top_size | PREV_INUSE);
1133 top_size = new_brk - brk + correction;
1134 set_head(top, top_size | PREV_INUSE);
1168 assert(((unsigned long)((char*)top + top_size) & (pagesz - 1)) == 0);
2162 long top_size; /* Amount of top-most memory */ local
2169 top_size = chunksize(top);
2170 extra = ((top_size - pad - MINSIZE + (pagesz-1)) / pagesz - 1) * pagesz;
2179 if (current_brk != (char*)(top) + top_size)
2190 top_size = current_brk - (char*)top;
2191 if (top_size >= (long)MINSIZE) /* if not, we are very very dead! */
2194 set_head(top, top_size | PREV_INUSE);
2203 set_head(top, (top_size - extra) | PREV_INUSE);