Lines Matching refs:MINSIZE
372 #define MINSIZE (sizeof(struct malloc_chunk)) macro
383 (long)(MINSIZE + MALLOC_ALIGN_MASK)) ? MINSIZE : \
818 if ((long)sz >= (long)MINSIZE)
861 assert(chunksize(next) >= MINSIZE);
880 assert((long)sz >= (long)MINSIZE);
883 assert(room < (long)MINSIZE);
1131 INTERNAL_SIZE_T sbrk_size = nb + top_pad + MINSIZE;
1194 if (old_top_size < MINSIZE)
1208 if (old_top_size >= MINSIZE)
1368 if (remainder_size >= (long)MINSIZE) /* too big */
1395 if (remainder_size >= (long)MINSIZE) /* re-split */
1460 if (remainder_size >= (long)MINSIZE) /* split */
1520 if ( (remainder_size = chunksize(top) - nb) < (long)MINSIZE)
1533 if ( (remainder_size = chunksize(top) - nb) < (long)MINSIZE)
1799 if ((long)(nextsize + newsize) >= (long)(nb + MINSIZE))
1841 if ((long)(nextsize + prevsize + newsize) >= (long)(nb + MINSIZE))
1913 if (newsize - nb >= MINSIZE) /* split off remainder */
1986 if (alignment < MINSIZE) alignment = MINSIZE;
1991 m = (char*)(mALLOc(nb + alignment + MINSIZE));
2057 if ((long)(brk - (char*)(p)) < MINSIZE) brk = brk + alignment;
2088 if (remainder_size >= (long)MINSIZE)
2260 extra = ((top_size - pad - MINSIZE + (pagesz-1)) / pagesz - 1) * pagesz;
2281 if (top_size >= (long)MINSIZE) /* if not, we are very very dead! */
2353 int navail = ((long)(avail) >= (long)MINSIZE)? 1 : 0; in malloc_update_mallinfo()
2363 q < top && inuse(q) && (long)(chunksize(q)) >= (long)MINSIZE; in malloc_update_mallinfo()