Home | History | Annotate | Download | only in alloc

Lines Matching refs:ptrs

983  * Frees the first numPtrs objects in the ptrs list and returns the
988 size_t dvmHeapSourceFreeList(size_t numPtrs, void **ptrs)
996 assert(ptrs != NULL);
997 assert(*ptrs != NULL);
998 Heap* heap = ptr2heap(gHs, *ptrs);
1009 assert(ptrs[i] != NULL);
1010 assert(ptr2heap(gHs, ptrs[i]) == heap);
1011 countFree(heap, ptrs[i], &numBytes);
1013 // Bulk free ptrs.
1014 mspace_bulk_free(msp, ptrs, numPtrs);
1018 assert(ptrs[i] != NULL);
1019 assert(ptr2heap(gHs, ptrs[i]) == heap);
1020 countFree(heap, ptrs[i], &numBytes);