Lines Matching refs:AllocateRaw
56 V8_WARN_UNUSED_RESULT V8_INLINE AllocationResult HeapAllocator::AllocateRaw(
63 return AllocateRaw(size_in_bytes, AllocationType::kOld, origin, alignment);
99 new_space()->AllocateRaw(size_in_bytes, alignment, origin);
103 old_space()->AllocateRaw(size_in_bytes, alignment, origin);
117 allocation = read_only_space()->AllocateRaw(size_in_bytes, alignment);
120 allocation = shared_map_allocator_->AllocateRaw(size_in_bytes,
124 allocation = shared_old_allocator_->AllocateRaw(size_in_bytes,
161 AllocationResult HeapAllocator::AllocateRaw(int size_in_bytes,
167 return AllocateRaw<AllocationType::kYoung>(size_in_bytes, origin,
170 return AllocateRaw<AllocationType::kOld>(size_in_bytes, origin,
173 return AllocateRaw<AllocationType::kCode>(size_in_bytes, origin,
176 return AllocateRaw<AllocationType::kMap>(size_in_bytes, origin,
179 return AllocateRaw<AllocationType::kReadOnly>(size_in_bytes, origin,
182 return AllocateRaw<AllocationType::kSharedMap>(size_in_bytes, origin,
185 return AllocateRaw<AllocationType::kSharedOld>(size_in_bytes, origin,
197 return AllocateRaw<AllocationType::kYoung>(size_in_bytes, origin,
200 return AllocateRaw<AllocationType::kOld>(size_in_bytes, origin,
219 result = AllocateRaw<AllocationType::kYoung>(size, origin, alignment);
224 result = AllocateRaw<AllocationType::kOld>(size, origin, alignment);