HomeSort by relevance Sort by last modified time
    Searched refs:bigsize (Results 1 - 3 of 3) 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/skia/src/utils/
SkMultiPictureDocument.cpp 73 SkSize bigsize = join(fSizes); variable
74 SkCanvas* c = fPictureRecorder.beginRecording(SkRect::MakeSize(bigsize));
  /external/curl/lib/
url.c 691 curl_off_t bigsize; local
1076 bigsize = va_arg(param, long);
1078 if(data->set.postfieldsize < bigsize &&
1085 data->set.postfieldsize = bigsize;
1093 bigsize = va_arg(param, curl_off_t);
1095 if(data->set.postfieldsize < bigsize &&
1102 data->set.postfieldsize = bigsize;
    [all...]

Completed in 1081 milliseconds