Searched defs:b3 (Results 1 - 3 of 3) sorted by relevance

/frameworks/native/opengl/libagl/
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
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...]
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothGattCharacteristic.java651 private int unsignedBytesToInt(byte b0, byte b1, byte b2, byte b3) { argument
653 + (unsignedByteToInt(b2) << 16) + (unsignedByteToInt(b3) << 24);
669 private float bytesToFloat(byte b0, byte b1, byte b2, byte b3) { argument
673 return (float)(mantissa * Math.pow(10, b3));

Completed in 5199 milliseconds