Searched refs:ptrs (Results 1 - 5 of 5) sorted by relevance

/dalvik/vm/alloc/
H A DHeapBitmap.h78 typedef void BitmapSweepCallback(size_t numPtrs, void **ptrs, void *arg);
H A DHeapSource.h119 * Frees the first numPtrs objects in the ptrs list and returns the
124 size_t dvmHeapSourceFreeList(size_t numPtrs, void **ptrs);
H A DHeapSource.cpp975 * Frees the first numPtrs objects in the ptrs list and returns the
980 size_t dvmHeapSourceFreeList(size_t numPtrs, void **ptrs) argument
988 assert(ptrs != NULL);
989 assert(*ptrs != NULL);
990 Heap* heap = ptr2heap(gHs, *ptrs);
1001 assert(ptrs[i] != NULL);
1002 assert(ptr2heap(gHs, ptrs[i]) == heap);
1003 countFree(heap, ptrs[i], &numBytes);
1005 // Bulk free ptrs.
1006 mspace_bulk_free(msp, ptrs, numPtr
[all...]
H A DMarkSweep.cpp862 static void sweepBitmapCallback(size_t numPtrs, void **ptrs, void *arg) argument
869 ctx->numBytes += dvmHeapSourceFreeList(numPtrs, ptrs);
/dalvik/vm/alloc/TEST/HeapBitmapTest/
H A Dmain.c317 xorCallback(size_t numPtrs, void **ptrs, const void *finger, void *arg) argument
320 assert(ptrs != NULL);
325 assert(ptrs[i] < finger);
327 (uintptr_t)ptrs[i], (uintptr_t)finger);

Completed in 197 milliseconds