Searched refs:aPix (Results 1 – 2 of 2) sorted by relevance
/aosp14/frameworks/base/core/tests/coretests/src/android/graphics/drawable/ |
H A D | AdaptiveIconDrawableTest.java | 220 int[] aPix = new int[w * h]; in equalBitmaps() local 239 a.getPixels(aPix, 0, w, 0, 0, w, h); in equalBitmaps() 241 return Arrays.equals(aPix, bPix); in equalBitmaps() 254 int[] aPix = new int[w * h]; in findBitmapDifferences() local 257 a.getPixels(aPix, 0, w, 0, 0, w, h); in findBitmapDifferences() 261 printBits(aPix, w, h); in findBitmapDifferences() 268 if (aPix[i+w*j] != bPix[i+w*j]) { in findBitmapDifferences() 270 .append(aPix[i+w*j]).append(",").append(bPix[i+w*j]).append(">"); in findBitmapDifferences()
|
H A D | IconTest.java | 483 int[] aPix = new int[w * h]; in printBits() local 484 printBits(aPix, w, h); in printBits() 495 int[] aPix = new int[w * h]; in equalBitmaps() local 508 a.getPixels(aPix, 0, w, 0, 0, w, h); in equalBitmaps() 510 return Arrays.equals(aPix, bPix); in equalBitmaps() 523 int[] aPix = new int[w * h]; in findBitmapDifferences() local 526 a.getPixels(aPix, 0, w, 0, 0, w, h); in findBitmapDifferences() 530 printBits(aPix, w, h); in findBitmapDifferences() 537 if (aPix[i+w*j] != bPix[i+w*j]) { in findBitmapDifferences()
|