HomeSort by relevance Sort by last modified time
    Searched refs:bigsize (Results 1 - 2 of 2) sorted by null

  /external/valgrind/memcheck/tests/
sbfragment.c 43 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...]
  /external/curl/lib/
url.c 699 curl_off_t bigsize; local
1056 bigsize = va_arg(param, long);
1058 if(data->set.postfieldsize < bigsize &&
1065 data->set.postfieldsize = bigsize;
1073 bigsize = va_arg(param, curl_off_t);
1075 if(data->set.postfieldsize < bigsize &&
1082 data->set.postfieldsize = bigsize;
    [all...]

Completed in 1308 milliseconds