Lines Matching refs:result
37 AllocationResult result = local_heap.AllocateRaw(
40 if (!result.IsFailure()) {
42 result.ToAddress(), kSmallObjectSize,
48 result = local_heap.AllocateRaw(kMediumObjectSize, AllocationType::kOld,
51 if (!result.IsFailure()) {
53 result.ToAddress(), kMediumObjectSize,
59 result = local_heap.AllocateRaw(kLargeObjectSize, AllocationType::kOld,
62 if (!result.IsFailure()) {
64 result.ToAddress(), kLargeObjectSize,
135 auto result = space_->RawRefillLabBackground(
137 if (!result) return false;
140 Address top = result->first;
141 Address limit = top + result->second;
145 HeapObject object = HeapObject::FromAddress(result->first);
148 space_->heap(), AllocationResult::FromObject(object), result->second);
158 auto result = space_->RawRefillLabBackground(local_heap_, object_size,
160 if (!result) return AllocationResult::Failure();
162 HeapObject object = HeapObject::FromAddress(result->first);