Home | History | Annotate | Download | only in mjsunit

Lines Matching refs:MINSIZE

5211 "        MINSIZE bytes long, it is replenished.\n" +
5233 "#define MINSIZE \\n" +
5244 " low enough so that adding MINSIZE will also not wrap around sero.\n" +
5249 " (CHUNK_SIZE_T)(INTERNAL_SIZE_T)(-2 * MINSIZE))\n" +
5254 " (((req) + SIZE_SZ + MALLOC_ALIGN_MASK < MINSIZE) ? \\n" +
5255 " MINSIZE : \\n" +
5850 " /* top size is always at least MINSIZE */\n" +
5851 " assert((CHUNK_SIZE_T)(sz) >= MINSIZE);\n" +
5896 " if ((CHUNK_SIZE_T)(sz) >= MINSIZE)\n" +
5950 " assert(chunksize(next) >= MINSIZE);\n" +
5972 " assert((CHUNK_SIZE_T)(sz) >= MINSIZE);\n" +
5975 " /* chunk is less than MINSIZE more than request */\n" +
5977 " assert((long)(sz) - (long)(s + MINSIZE) < 0);\n" +
6108 " (CHUNK_SIZE_T)(chunksize(q)) >= MINSIZE);\n" +
6267 " at least MINSIZE and to have prev_inuse set.\n" +
6271 " ((CHUNK_SIZE_T) (old_size) >= MINSIZE &&\n" +
6275 " assert((CHUNK_SIZE_T)(old_size) < (CHUNK_SIZE_T)(nb + MINSIZE));\n" +
6283 " size = nb + av->top_pad + MINSIZE;\n" +
6512 " old_top when old_size was previously MINSIZE. This is\n" +
6525 " if (old_size >= MINSIZE) {\n" +
6553 " if ((CHUNK_SIZE_T)(size) >= (CHUNK_SIZE_T)(nb + MINSIZE)) {\n" +
6601 " extra = ((top_size - pad - MINSIZE + (pagesz-1)) / pagesz - 1) * pagesz;\n" +
6678 " to obtain a size of at least MINSIZE, the smallest allocatable\n" +
6772 " (CHUNK_SIZE_T)(size) > (CHUNK_SIZE_T)(nb + MINSIZE)) {\n" +
6859 " if (remainder_size < MINSIZE) {\n" +
6938 " if (remainder_size < MINSIZE) {\n" +
6973 " MINSIZE) after initialization, so if it would otherwise be\n" +
6975 " reason for ensuring it exists is that we may need MINSIZE space\n" +
6982 " if ((CHUNK_SIZE_T)(size) >= (CHUNK_SIZE_T)(nb + MINSIZE)) {\n" +
7339 " (CHUNK_SIZE_T)(nb + MINSIZE)) {\n" +
7418 " if (remainder_size < MINSIZE) { /* not enough extra to split off */\n" +
7527 " if (alignment < MINSIZE) alignment = MINSIZE;\n" +
7529 " /* Make sure alignment is power of 2 (in case MINSIZE is not). */\n" +
7546 " m = (char*)(mALLOc(nb + alignment + MINSIZE));\n" +
7556 " leading space in a chunk of at least MINSIZE, if the first\n" +
7557 " calculation places us at a spot with less than MINSIZE leader,\n" +
7564 " if ((CHUNK_SIZE_T)(brk - (char*)(p)) < MINSIZE)\n" +
7592 " if ((CHUNK_SIZE_T)(size) > (CHUNK_SIZE_T)(nb + MINSIZE)) {\n" +