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

  /external/chromium_org/third_party/WebKit/Source/wtf/
PartitionAlloc.h 101 static const size_t kAllocationGranularity = sizeof(align_t);
102 static const size_t kAllocationGranularityMask = kAllocationGranularity - 1;
103 static const size_t kBucketShift = (kAllocationGranularity == 8) ? 3 : 2;
106 static const size_t kMaxAllocation = (1 << kMaxAllocationOrder) - kAllocationGranularity;
PartitionAllocTest.cpp 388 newPtr = partitionReallocGeneric(&root, ptr, 1, WTF::kAllocationGranularity);
392 newPtr = partitionReallocGeneric(&root, ptr, WTF::kAllocationGranularity, WTF::kAllocationGranularity + 1);
407 newPtr = partitionReallocGeneric(&root, ptr, WTF::kAllocationGranularity + 1, 1);

Completed in 33 milliseconds