Home | History | Annotate | Download | only in alloc

Lines Matching defs:bitmap

147 static size_t sumHeapBitmap(const HeapBitmap *bitmap);
559 * Performs a shallow copy of the allocation bitmap into the given
674 HeapBitmap *bitmap;
677 bitmap = &heapSource->allocBits;
678 if (!dvmHeapBitmapCoversAddress(bitmap, addr)) {
681 return dvmHeapBitmapIsObjectBitSet(bitmap, addr);
829 static size_t sumHeapBitmap(const HeapBitmap *bitmap)
832 for (size_t i = 0; i < bitmap->bitsLen >> 2; ++i) {
833 sum += CLZ(bitmap->bits[i]);