Home
last modified time | relevance | path

Searched refs:b2 (Results 1 – 6 of 6) sorted by relevance

/development/samples/ApiDemos/src/com/example/android/mmslib/pdu/
DBase64.java75 byte b1 = 0, b2 = 0, b3 = 0, b4 = 0, marker0 = 0, marker1 = 0; in decodeBase64()
99 b2 = base64Alphabet[base64Data[dataIndex + 1]]; in decodeBase64()
106 decodedData[encodedIndex] = (byte) (b1 << 2 | b2 >> 4); in decodeBase64()
108 (byte) (((b2 & 0xf) << 4) | ((b3 >> 2) & 0xf)); in decodeBase64()
112 decodedData[encodedIndex] = (byte) (b1 << 2 | b2 >> 4); in decodeBase64()
117 decodedData[encodedIndex] = (byte) (b1 << 2 | b2 >> 4); in decodeBase64()
119 (byte) (((b2 & 0xf) << 4) | ((b3 >> 2) & 0xf)); in decodeBase64()
/development/samples/RenderScript/Levels/src/com/android/rs/levels/
DLevelsRSActivity.java190 Bitmap b2 = Bitmap.createBitmap(b.getWidth(), b.getHeight(), b.getConfig()); in loadBitmap() local
191 Canvas c = new Canvas(b2); in loadBitmap()
194 return b2; in loadBitmap()
DLevelsDalvikActivity.java171 Bitmap b2 = Bitmap.createBitmap(b.getWidth(), b.getHeight(), b.getConfig()); in loadBitmap() local
172 Canvas c = new Canvas(b2); in loadBitmap()
175 return b2; in loadBitmap()
/development/tools/axl/
Dsingletonmixin.py140 b2 = B.getInstance()
143 self.assertEquals(id(b1), id(b2))
/development/samples/ApiDemos/src/com/example/android/apis/view/
DGameView.java495 int a2, int r2, int g2, int b2) {
497 blend(alpha, g1, g2), blend(alpha, b1, b2));
/development/samples/ControllerSample/src/com/example/controllersample/
DGameView.java460 int a2, int r2, int g2, int b2) { in setPaintARGBBlend() argument
462 blend(alpha, g1, g2), blend(alpha, b1, b2)); in setPaintARGBBlend()