Home
last modified time | relevance | path

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

/dalvik/vm/alloc/
DHeapSource.cpp988 size_t dvmHeapSourceFreeList(size_t numPtrs, void **ptrs) in dvmHeapSourceFreeList() argument
996 assert(ptrs != NULL); in dvmHeapSourceFreeList()
997 assert(*ptrs != NULL); in dvmHeapSourceFreeList()
998 Heap* heap = ptr2heap(gHs, *ptrs); in dvmHeapSourceFreeList()
1009 assert(ptrs[i] != NULL); in dvmHeapSourceFreeList()
1010 assert(ptr2heap(gHs, ptrs[i]) == heap); in dvmHeapSourceFreeList()
1011 countFree(heap, ptrs[i], &numBytes); in dvmHeapSourceFreeList()
1014 mspace_bulk_free(msp, ptrs, numPtrs); in dvmHeapSourceFreeList()
1018 assert(ptrs[i] != NULL); in dvmHeapSourceFreeList()
1019 assert(ptr2heap(gHs, ptrs[i]) == heap); in dvmHeapSourceFreeList()
[all …]
DHeapSource.h124 size_t dvmHeapSourceFreeList(size_t numPtrs, void **ptrs);
DHeapBitmap.h78 typedef void BitmapSweepCallback(size_t numPtrs, void **ptrs, void *arg);
DMarkSweep.cpp862 static void sweepBitmapCallback(size_t numPtrs, void **ptrs, void *arg) in sweepBitmapCallback() argument
869 ctx->numBytes += dvmHeapSourceFreeList(numPtrs, ptrs); in sweepBitmapCallback()
/dalvik/vm/alloc/TEST/HeapBitmapTest/
Dmain.c317 xorCallback(size_t numPtrs, void **ptrs, const void *finger, void *arg) in xorCallback() argument
320 assert(ptrs != NULL); in xorCallback()
325 assert(ptrs[i] < finger); in xorCallback()
327 (uintptr_t)ptrs[i], (uintptr_t)finger); in xorCallback()