Searched refs:ptrs (Results 1 – 5 of 5) sorted by relevance
/dalvik/vm/alloc/ |
D | HeapSource.c | 948 size_t dvmHeapSourceFreeList(size_t numPtrs, void **ptrs) in dvmHeapSourceFreeList() argument 959 assert(ptrs != NULL); in dvmHeapSourceFreeList() 960 assert(*ptrs != NULL); in dvmHeapSourceFreeList() 961 heap = ptr2heap(gHs, *ptrs); in dvmHeapSourceFreeList() 984 assert(ptrs[0] != NULL); in dvmHeapSourceFreeList() 985 assert(ptr2heap(gHs, ptrs[0]) == heap); in dvmHeapSourceFreeList() 986 countFree(heap, ptrs[0], &numBytes); in dvmHeapSourceFreeList() 987 void *merged = ptrs[0]; in dvmHeapSourceFreeList() 992 assert(ptrs[i] != NULL); in dvmHeapSourceFreeList() 993 assert((intptr_t)merged < (intptr_t)ptrs[i]); in dvmHeapSourceFreeList() [all …]
|
D | HeapSource.h | 113 size_t dvmHeapSourceFreeList(size_t numPtrs, void **ptrs);
|
D | HeapBitmap.h | 85 typedef void BitmapSweepCallback(size_t numPtrs, void **ptrs, void *arg);
|
D | MarkSweep.c | 918 static void sweepBitmapCallback(size_t numPtrs, void **ptrs, void *arg) in sweepBitmapCallback() argument 925 ctx->numBytes += dvmHeapSourceFreeList(numPtrs, ptrs); in sweepBitmapCallback()
|
/dalvik/vm/alloc/TEST/HeapBitmapTest/ |
D | main.c | 317 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()
|