Lines Matching refs:ret
102 void* ret;
104 ret = allocator_->Allocate(size);
106 ret = allocator_->AllocateUninitialized(size);
107 if (LIKELY(ret != nullptr))
109 return ret;
113 void* ret = allocator_->AllocateUninitialized(size);
114 if (LIKELY(ret != nullptr))
116 return ret;
121 void* ret = allocator_->Reallocate(data, old_size, size);
122 if (LIKELY(ret != nullptr) || UNLIKELY(size == 0))
124 return ret;
160 void* ret = NodeArrayBufferAllocator::Reallocate(data, old_size, size);
161 if (ret == nullptr) {
177 RegisterPointerInternal(ret, size);
178 return ret;