OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bPix
(Results
1 - 2
of
2
) sorted by null
/cts/tests/camera/src/android/hardware/camera2/cts/rs/
BitmapUtils.java
104
int
bPix
= bPixels[i];
108
int bR = Color.red(
bPix
);
109
int bG = Color.green(
bPix
);
110
int bB = Color.blue(
bPix
);
/cts/tests/tests/graphics/src/android/graphics/drawable/cts/
AdaptiveIconDrawableTest.java
370
int[]
bPix
= new int[w * h];
389
b.getPixels(
bPix
, 0, w, 0, 0, w, h);
390
return Arrays.equals(aPix,
bPix
);
404
int[]
bPix
= new int[w * h];
407
b.getPixels(
bPix
, 0, w, 0, 0, w, h);
412
printBits(
bPix
, w, h);
417
if (aPix[i+w*j] !=
bPix
[i+w*j]) {
419
.append(aPix[i+w*j]).append(",").append(
bPix
[i+w*j]).append(">");
Completed in 857 milliseconds