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

  /external/chromium_org/third_party/WebKit/Source/wtf/
PageAllocator.h 46 static const size_t kPageAllocationGranularity = 1 << kPageAllocationGranularityShift;
47 static const size_t kPageAllocationGranularityOffsetMask = kPageAllocationGranularity - 1;
60 // len is in bytes, and must be a multiple of kPageAllocationGranularity.
62 // kPageAllocationGranularity.
PageAllocator.cpp 189 ASSERT(len >= kPageAllocationGranularity);
191 ASSERT(align >= kPageAllocationGranularity);
214 size_t tryLen = len + (align - kPageAllocationGranularity);
PartitionAllocTest.cpp     [all...]

Completed in 248 milliseconds