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/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/bdf/
bdflib.c 481 unsigned long bigsize = (unsigned long)( FT_INT_MAX / sizeof ( char* ) ); local
485 if ( oldsize == bigsize )
490 else if ( newsize < oldsize || newsize > bigsize )
491 newsize = bigsize;
    [all...]
  /external/curl/lib/
url.c 694 curl_off_t bigsize; local
1059 bigsize = va_arg(param, long);
1061 if(data->set.postfieldsize < bigsize &&
1068 data->set.postfieldsize = bigsize;
1076 bigsize = va_arg(param, curl_off_t);
1078 if(data->set.postfieldsize < bigsize &&
1085 data->set.postfieldsize = bigsize;
    [all...]

Completed in 66 milliseconds