Home | History | Annotate | Download | only in heap

Lines Matching refs:AllocationResult

266 AllocationResult LocalAllocationBuffer::AllocateRawAligned(
272 if (new_top > allocation_info_.limit()) return AllocationResult::Retry();
280 return AllocationResult(HeapObject::FromAddress(current_top));
316 AllocationResult PagedSpace::AllocateRawUnaligned(
320 return AllocationResult::Retry(identity());
332 AllocationResult PagedSpace::AllocateRawAligned(int size_in_bytes,
344 return AllocationResult::Retry(identity());
355 AllocationResult PagedSpace::AllocateRaw(int size_in_bytes,
371 AllocationResult result =
376 AllocationResult result = AllocateRawUnaligned(size_in_bytes);
395 AllocationResult NewSpace::AllocateRawAligned(int size_in_bytes,
405 return AllocationResult::Retry();
427 AllocationResult NewSpace::AllocateRawUnaligned(int size_in_bytes) {
432 return AllocationResult::Retry();
448 AllocationResult NewSpace::AllocateRaw(int size_in_bytes,
465 V8_WARN_UNUSED_RESULT inline AllocationResult NewSpace::AllocateRawSynchronized(
472 AllocationResult result,