Lines Matching full:ptrs
181 size_t DlMallocSpace::FreeList(Thread* self, size_t num_ptrs, mirror::Object** ptrs) {
182 DCHECK(ptrs != nullptr);
187 mirror::Object* ptr = ptrs[i];
191 __builtin_prefetch(reinterpret_cast<char*>(ptrs[i + look_ahead]) - sizeof(size_t));
199 RegisterRecentFree(ptrs[i]);
206 if (!Contains(ptrs[i])) {
208 LOG(ERROR) << "FreeList[" << i << "] (" << ptrs[i] << ") not in bounds of heap " << *this;
210 size_t size = mspace_usable_size(ptrs[i]);
211 memset(ptrs[i], 0xEF, size);
219 mspace_bulk_free(mspace_, reinterpret_cast<void**>(ptrs), num_ptrs);