• Home
  • Raw
  • Download

Lines Matching refs:ret

248   mirror::Object* ret;  in TryToAllocate()  local
253 ret = bump_pointer_space_->AllocNonvirtual(alloc_size); in TryToAllocate()
254 if (LIKELY(ret != nullptr)) { in TryToAllocate()
269 ret = rosalloc_space_->Alloc(self, alloc_size, bytes_allocated, usable_size, in TryToAllocate()
282 ret = rosalloc_space_->AllocNonvirtual(self, alloc_size, bytes_allocated, usable_size, in TryToAllocate()
290 ret = dlmalloc_space_->Alloc(self, alloc_size, bytes_allocated, usable_size, in TryToAllocate()
294 ret = dlmalloc_space_->AllocNonvirtual(self, alloc_size, bytes_allocated, usable_size, in TryToAllocate()
300 ret = non_moving_space_->Alloc(self, alloc_size, bytes_allocated, usable_size, in TryToAllocate()
305 ret = large_object_space_->Alloc(self, alloc_size, bytes_allocated, usable_size, in TryToAllocate()
310 DCHECK(ret == nullptr || large_object_space_->Contains(ret)); in TryToAllocate()
330 ret = self->AllocTlab(alloc_size); in TryToAllocate()
331 DCHECK(ret != nullptr); in TryToAllocate()
339 ret = region_space_->AllocNonvirtual<false>(alloc_size, bytes_allocated, usable_size, in TryToAllocate()
353 ret = region_space_->AllocNonvirtual<false>(alloc_size, bytes_allocated, usable_size, in TryToAllocate()
355 return ret; in TryToAllocate()
362 ret = region_space_->AllocNonvirtual<false>(alloc_size, bytes_allocated, usable_size, in TryToAllocate()
364 return ret; in TryToAllocate()
373 ret = region_space_->AllocNonvirtual<false>(alloc_size, bytes_allocated, usable_size, in TryToAllocate()
375 return ret; in TryToAllocate()
384 ret = self->AllocTlab(alloc_size); in TryToAllocate()
385 DCHECK(ret != nullptr); in TryToAllocate()
392 ret = nullptr; in TryToAllocate()
395 return ret; in TryToAllocate()