Searched refs:b3 (Results 1 - 7 of 7) sorted by relevance

/frameworks/opt/mms/src/java/com/google/android/mms/pdu/
H A DBase64.java75 byte b1 = 0, b2 = 0, b3 = 0, b4 = 0, marker0 = 0, marker1 = 0;
103 b3 = base64Alphabet[marker0];
108 (byte) (((b2 & 0xf) << 4) | ((b3 >> 2) & 0xf));
109 decodedData[encodedIndex + 2] = (byte) (b3 << 6 | b4);
115 b3 = base64Alphabet[marker0];
119 (byte) (((b2 & 0xf) << 4) | ((b3 >> 2) & 0xf));
/frameworks/base/core/java/android/net/
H A DSntpClient.java169 byte b3 = buffer[offset+3];
175 int i3 = ((b3 & 0x80) == 0x80 ? (b3 & 0x7F) + 0x80 : b3);
/frameworks/native/opengl/libagl/
H A Ddxt.cpp104 int b3 = (x ) & 0xff; local
106 return (uint32_t)((b3 << 24) | (b2 << 16) | (b1 << 8) | b0);
167 // bits: b31 b30 b29 ... b3 b2 b1 b0
168 // bits >> 1: b31 b31 b30 ... b4 b3 b2 b1
251 int r2, g2, b2, r3, g3, b3, a3; local
265 b3 = avg23(b1, b0);
272 r3 = g3 = b3 = a3 = 0;
278 (b3 << 1) | a3;
281 c[3] = (r3 << 11) | (g3 << 5) | b3;
379 int b3 local
536 int b3 = avg23(b1, b0); local
[all...]
H A Dmatrix.h350 GLfixed a3, GLfixed b3)
367 "%r"(a3), "r"(b3)
377 int64_t(a3)*b3 + 0x8000)>>16);
347 mla4( GLfixed a0, GLfixed b0, GLfixed a1, GLfixed b1, GLfixed a2, GLfixed b2, GLfixed a3, GLfixed b3) argument
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothGattCharacteristic.java637 private int unsignedBytesToInt(byte b0, byte b1, byte b2, byte b3) { argument
639 + (unsignedByteToInt(b2) << 16) + (unsignedByteToInt(b3) << 24);
655 private float bytesToFloat(byte b0, byte b1, byte b2, byte b3) { argument
659 return (float)(mantissa * Math.pow(10, b3));
/frameworks/base/media/libdrm/mobile1/src/objmng/
H A Ddrm_rights_manager.c609 uint8_t *b1 = dbuf, *b2 = b1 + DRM_ONE_AES_BLOCK_LEN, *b3 = b2 + DRM_ONE_AES_BLOCK_LEN, *bt; local
613 b3 = Buffer;
632 /* The lowest 'len' bytes of next block b3 - C[N-1] */
634 buf[i] ^= b3[i];
636 /* Reconstruct the C[N-1] block in b3 by adding in the */
639 b3[i] = buf[i];
641 /* Decrypt the C[N-1] block in b3 */
642 AES_decrypt((uint8_t *)b3, (uint8_t *)b3, key);
647 b3[
[all...]
/frameworks/base/services/java/com/android/server/am/
H A DNativeCrashListener.java164 int b0, b1, b2, b3;
169 b3 = ((int) buf[offset+3]) & 0xFF;
170 return (b0 << 24) | (b1 << 16) | (b2 << 8) | b3;

Completed in 161 milliseconds