Lines Matching refs:ret
202 mirror::Object* ret; in TryToAllocate() local
207 ret = bump_pointer_space_->AllocNonvirtual(alloc_size); in TryToAllocate()
208 if (LIKELY(ret != nullptr)) { in TryToAllocate()
217 ret = rosalloc_space_->Alloc(self, alloc_size, bytes_allocated, usable_size); in TryToAllocate()
220 ret = rosalloc_space_->AllocNonvirtual(self, alloc_size, bytes_allocated, usable_size); in TryToAllocate()
227 ret = dlmalloc_space_->Alloc(self, alloc_size, bytes_allocated, usable_size); in TryToAllocate()
230 ret = dlmalloc_space_->AllocNonvirtual(self, alloc_size, bytes_allocated, usable_size); in TryToAllocate()
235 ret = non_moving_space_->Alloc(self, alloc_size, bytes_allocated, usable_size); in TryToAllocate()
239 ret = large_object_space_->Alloc(self, alloc_size, bytes_allocated, usable_size); in TryToAllocate()
243 DCHECK(ret == nullptr || large_object_space_->Contains(ret)); in TryToAllocate()
263 ret = self->AllocTlab(alloc_size); in TryToAllocate()
264 DCHECK(ret != nullptr); in TryToAllocate()
270 ret = nullptr; in TryToAllocate()
273 return ret; in TryToAllocate()