Lines Matching refs:hb2
182 dvmHeapBitmapXorWalk(const HeapBitmap *hb1, const HeapBitmap *hb2, in dvmHeapBitmapXorWalk() argument
232 assert(hb2 != NULL); in dvmHeapBitmapXorWalk()
233 assert(hb2->bits != NULL); in dvmHeapBitmapXorWalk()
236 if (hb1->base != hb2->base) { in dvmHeapBitmapXorWalk()
239 (uintptr_t)hb1->base, (uintptr_t)hb2->base); in dvmHeapBitmapXorWalk()
242 if (hb1->bitsLen != hb2->bitsLen) { in dvmHeapBitmapXorWalk()
244 hb1->bitsLen, hb2->bitsLen); in dvmHeapBitmapXorWalk()
247 if (hb1->max < hb1->base && hb2->max < hb2->base) { in dvmHeapBitmapXorWalk()
255 if (hb1->max >= hb1->base && hb2->max >= hb2->base) { in dvmHeapBitmapXorWalk()
259 offset = ((hb1->max < hb2->max) ? hb1->max : hb2->max) - hb1->base; in dvmHeapBitmapXorWalk()
264 p2 = hb2->bits; in dvmHeapBitmapXorWalk()
286 longHb = (hb1->max > hb2->max) ? hb1 : hb2; in dvmHeapBitmapXorWalk()