OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:kMaxAllocation
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/wtf/
QuantizedAllocation.h
52
static const size_t
kMaxAllocation
= 32768;
61
static const size_t kTableSize =
kMaxAllocation
/ kMinRoundingLimit;
72
if (UNLIKELY(size >=
kMaxAllocation
))
PartitionAlloc.h
559
static const size_t
kMaxAllocation
= N - kAllocationGranularity;
561
void init() { partitionAllocInit(&m_partitionRoot, kNumBuckets,
kMaxAllocation
); }
PartitionAllocTest.cpp
383
ptr = partitionAllocGeneric(allocator.root(), PartitionAllocator<4096>::
kMaxAllocation
+ 1);
431
newPtr = partitionReallocGeneric(allocator.root(), ptr, PartitionAllocator<4096>::
kMaxAllocation
+ 1);
439
newPtr = partitionReallocGeneric(allocator.root(), ptr, PartitionAllocator<4096>::
kMaxAllocation
* 10);
444
newPtr = partitionReallocGeneric(allocator.root(), ptr, PartitionAllocator<4096>::
kMaxAllocation
* 2);
Completed in 98 milliseconds