Lines Matching refs:result
154 AllocationResult result,
156 if (result.IsFailure()) return InvalidBuffer();
158 bool ok = result.To(&obj);
245 AllocationResult result;
248 result = AllocateFastAligned(size_in_bytes, nullptr, alignment, origin);
250 result = AllocateFastUnaligned(size_in_bytes, origin);
253 return result.IsFailure() ? AllocateRawSlow(size_in_bytes, alignment, origin)
254 : result;
269 AllocationResult result = AllocateFastUnaligned(size_in_bytes, origin);
270 DCHECK(!result.IsFailure());
272 InvokeAllocationObservers(result.ToAddress(), size_in_bytes, size_in_bytes,
275 return result;
291 AllocationResult result = AllocateFastAligned(
294 DCHECK(!result.IsFailure());
296 InvokeAllocationObservers(result.ToAddress(), size_in_bytes,
299 return result;
304 AllocationResult result =
308 return result;