Home | History | Annotate | Download | only in tests

Lines Matching refs:bigsize

43   unsigned long bigsize = 8; // current size of the (reallocated) big block.
56 bigsize += BIGINCREASE;
57 big = malloc (bigsize);
60 ++malloc_failure, bigsize);
66 bigsize += BIGINCREASE;
67 newbig = malloc(bigsize);
70 ++malloc_failure, bigsize);
77 printf ("after %d loops, last size block requested %lu\n", loop, bigsize);
79 // We consider that an arena of up to 3 times more than bigsize is ok.
88 if (mallinfo_result.arena + mallinfo_result.hblkhd > 3 * bigsize)