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

  /external/valgrind/main/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/chromium_org/cc/output/
shader_unittest.cc 27 gfx::Size bigSize(2560, 2560);
37 &stub_gl, &threshold_cache, threshold_min, bigSize));
47 &stub_gl, &threshold_cache, threshold_min, bigSize));
  /external/chromium_org/third_party/skia/src/core/
SkMallocPixelRef.cpp 67 Sk64 bigSize;
68 bigSize.setMul(info.fHeight, rowBytes);
69 if (!bigSize.is32()) {
73 size_t size = bigSize.get32();
  /external/skia/src/core/
SkMallocPixelRef.cpp 67 Sk64 bigSize;
68 bigSize.setMul(info.fHeight, rowBytes);
69 if (!bigSize.is32()) {
73 size_t size = bigSize.get32();
  /external/chromium_org/third_party/WebKit/Source/wtf/
PartitionAllocTest.cpp 466 size_t bigSize = allocator.root()->maxAllocation - kExtraAllocSize;
467 EXPECT_EQ(WTF::kSystemPageSize - WTF::kAllocationGranularity, bigSize + kExtraAllocSize);
468 size_t bucketIdx = (bigSize + kExtraAllocSize) >> WTF::kBucketShift;
472 void* ptr = partitionAlloc(allocator.root(), bigSize);
481 void* ptr2 = partitionAlloc(allocator.root(), bigSize);
486 void* ptr3 = partitionAlloc(allocator.root(), bigSize);
491 void* ptr4 = partitionAlloc(allocator.root(), bigSize);
496 void* ptr5 = partitionAlloc(allocator.root(), bigSize);
504 ptr = partitionAlloc(allocator.root(), bigSize);
505 void* ptr6 = partitionAlloc(allocator.root(), bigSize);
    [all...]
  /frameworks/av/media/libstagefright/chromium_http/
support.cpp 103 int32_t bigsize = htonl(certsize); local
105 memcpy(bytes + offset, &bigsize, sizeof(bigsize));
106 offset += sizeof(bigsize);
  /external/chromium/base/
pickle_unittest.cc 109 TEST(PickleTest, BigSize) {
  /external/chromium_org/base/
pickle_unittest.cc 106 TEST(PickleTest, BigSize) {

Completed in 1921 milliseconds