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

/dalvik/vm/alloc/
H A DHeapSource.h108 * Frees the first numPtrs objects in the ptrs list and returns the
113 size_t dvmHeapSourceFreeList(size_t numPtrs, void **ptrs);
H A DHeapSource.c943 * Frees the first numPtrs objects in the ptrs list and returns the
948 size_t dvmHeapSourceFreeList(size_t numPtrs, void **ptrs) argument
959 assert(ptrs != NULL);
960 assert(*ptrs != NULL);
961 heap = ptr2heap(gHs, *ptrs);
977 // ptrs is an array of objects all in memory order, and if
983 // countFree ptrs[0] and initializing merged.
984 assert(ptrs[0] != NULL);
985 assert(ptr2heap(gHs, ptrs[0]) == heap);
986 countFree(heap, ptrs[
[all...]
H A DHeapBitmap.h85 typedef void BitmapSweepCallback(size_t numPtrs, void **ptrs, void *arg);
H A DMarkSweep.c918 static void sweepBitmapCallback(size_t numPtrs, void **ptrs, void *arg) argument
925 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 45 milliseconds