Lines Matching refs:MINSIZE
358 #define MINSIZE (sizeof(struct malloc_chunk)) macro
369 (long)(MINSIZE + MALLOC_ALIGN_MASK)) ? MINSIZE : \
764 if ((long)sz >= (long)MINSIZE)
807 assert(chunksize(next) >= MINSIZE);
826 assert((long)sz >= (long)MINSIZE);
829 assert(room < (long)MINSIZE);
1080 INTERNAL_SIZE_T sbrk_size = nb + top_pad + MINSIZE;
1143 if (old_top_size < MINSIZE)
1157 if (old_top_size >= MINSIZE)
1311 if (remainder_size >= (long)MINSIZE) /* too big */
1337 if (remainder_size >= (long)MINSIZE) /* re-split */
1400 if (remainder_size >= (long)MINSIZE) /* split */
1458 if ( (remainder_size = chunksize(top) - nb) < (long)MINSIZE)
1470 if ( (remainder_size = chunksize(top) - nb) < (long)MINSIZE)
1732 if ((long)(nextsize + newsize) >= (long)(nb + MINSIZE))
1770 if ((long)(nextsize + prevsize + newsize) >= (long)(nb + MINSIZE))
1835 if (newsize - nb >= MINSIZE) /* split off remainder */
1907 if (alignment < MINSIZE) alignment = MINSIZE;
1912 m = (char*)(mALLOc(nb + alignment + MINSIZE));
1978 if ((long)(brk - (char*)(p)) < MINSIZE) brk = brk + alignment;
2008 if (remainder_size >= (long)MINSIZE)
2177 extra = ((top_size - pad - MINSIZE + (pagesz-1)) / pagesz - 1) * pagesz;
2198 if (top_size >= (long)MINSIZE) /* if not, we are very very dead! */
2270 int navail = ((long)(avail) >= (long)MINSIZE)? 1 : 0; in malloc_update_mallinfo()
2280 q < top && inuse(q) && (long)(chunksize(q)) >= (long)MINSIZE; in malloc_update_mallinfo()