Lines Matching refs:allocation
41 int size_in_bytes, AllocationType allocation, AllocationOrigin origin,
43 DCHECK_GT(size_in_bytes, heap_->MaxRegularHeapObjectSize(allocation));
44 switch (allocation) {
80 int size, AllocationType allocation, AllocationOrigin origin,
82 AllocationResult result = AllocateRaw(size, allocation, origin, alignment);
89 if (IsSharedAllocationType(allocation)) {
92 heap_->CollectGarbage(AllocationTypeToGCSpace(allocation),
95 result = AllocateRaw(size, allocation, origin, alignment);
104 int size, AllocationType allocation, AllocationOrigin origin,
107 AllocateRawWithLightRetrySlowPath(size, allocation, origin, alignment);
111 if (IsSharedAllocationType(allocation)) {
119 result = AllocateRaw(size, allocation, origin, alignment);
124 result = AllocateRaw(size, allocation, origin, alignment);
156 // Reset the allocation timeout, but make sure to allow at least a few
158 // of allocation sequences and we assume that a garbage collection will
159 // allow the subsequent allocation attempts to go through.