Searched refs:bigsize (Results 1 - 1 of 1) sorted by relevance

/external/valgrind/main/memcheck/tests/
H A Dsbfragment.c43 unsigned long bigsize = 8; // current size of the (reallocated) big block. local
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)
[all...]

Completed in 303 milliseconds