Home
last modified time | relevance | path

Searched refs:bitmap2 (Results 1 – 3 of 3) sorted by relevance

/aosp12/frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/
H A DImageCompare.java48 public static double psnr(Bitmap bitmap1, Bitmap bitmap2) { in psnr() argument
49 if (bitmap1.getWidth() != bitmap2.getWidth() || in psnr()
50 bitmap1.getHeight() != bitmap2.getHeight()) { in psnr()
54 if (bitmap1.sameAs(bitmap2)) { in psnr()
68 int pixel2 = bitmap2.getPixel(x, y); in psnr()
/aosp12/art/runtime/gc/
H A Dheap.cc2479 accounting::ContinuousSpaceBitmap* bitmap2, in MarkAllocStack() argument
2483 DCHECK(bitmap2 != nullptr); in MarkAllocStack()
2490 } else if (bitmap2->HasAddress(obj)) { in MarkAllocStack()
2491 bitmap2->Set(obj); in MarkAllocStack()
H A Dheap.h670 accounting::SpaceBitmap<kObjectAlignment>* bitmap2,