Home | History | Annotate | Download | only in mjsunit

Lines Matching full:old_size

6151 "  INTERNAL_SIZE_T old_size;       /* its size */\n" +
6260 " old_size = chunksize(old_top);\n" +
6261 " old_end = (char*)(chunk_at_offset(old_top, old_size));\n" +
6266 " If not the first time through, we require old_size to be\n" +
6270 " assert((old_top == initial_top(av) && old_size == 0) ||\n" +
6271 " ((CHUNK_SIZE_T) (old_size) >= MINSIZE &&\n" +
6275 " assert((CHUNK_SIZE_T)(old_size) < (CHUNK_SIZE_T)(nb + MINSIZE));\n" +
6292 " size -= old_size;\n" +
6327 " size = (size + old_size + pagemask) & ~pagemask;\n" +
6363 " set_head(old_top, (size + old_size) | PREV_INUSE);\n" +
6400 " if (contiguous(av) && old_size != 0 && brk < old_end) {\n" +
6412 " if (old_size != 0)\n" +
6437 " correction += old_size;\n" +
6501 " if (old_size != 0) {\n" +
6507 " old_size = (old_size - 3*SIZE_SZ) & ~MALLOC_ALIGN_MASK;\n" +
6508 " set_head(old_top, old_size | PREV_INUSE);\n" +
6512 " old_top when old_size was previously MINSIZE. This is\n" +
6516 " chunk_at_offset(old_top, old_size )->size =\n" +
6519 " chunk_at_offset(old_top, old_size + SIZE_SZ)->size =\n" +
6525 " if (old_size >= MINSIZE) {\n" +