Searched refs:b0 (Results 1 - 11 of 11) sorted by relevance

/frameworks/native/opengl/libagl/
H A Dmatrix.h110 static inline GLfixed mla2a( GLfixed a0, GLfixed b0, argument
124 : "%r"(a0), "r"(b0),
133 return (( int64_t(a0)*b0 +
139 static inline GLfixed mla3a( GLfixed a0, GLfixed b0, argument
155 : "%r"(a0), "r"(b0),
168 "mult %[a0],%[b0] \r\n"
178 : [a0] "r" (a0),[b0] "r" (b0),[a1] "r" (a1),[b1] "r" (b1),[a2] "r" (a2),[b2] "r" (b2),[c] "r" (c)
185 return (( int64_t(a0)*b0 +
192 // b0, b
316 mla3( GLfixed a0, GLfixed b0, GLfixed a1, GLfixed b1, GLfixed a2, GLfixed b2) argument
347 mla4( GLfixed a0, GLfixed b0, GLfixed a1, GLfixed b1, GLfixed a2, GLfixed b2, GLfixed a3, GLfixed b3) argument
[all...]
H A Ddxt.cpp73 * r4r3r2 r1r0g5g4 g3g2g1g0 b4b3b2b1 b0 0 0 0 rgb << 3
82 * b4b3b2b1 b0------ (rgb << 3) & 0x0000f8
101 int b0 = (x >> 24) & 0xff; local
106 return (uint32_t)((b3 << 24) | (b2 << 16) | (b1 << 8) | b0);
167 // bits: b31 b30 b29 ... b3 b2 b1 b0
169 // &: b31 (b31 & b30) (b29 & b28) ... (b2 & b1) (b1 & b0)
170 // & 0x55..: 0 (b31 & b30) 0 ... 0 (b1 & b0)
237 int b0 = blue(color0); local
244 c[0] = (r0 << 11) | ((g0 >> 1) << 6) | (b0 << 1) | 0x1;
261 b2 = avg23(b0, b
367 int b0 = blue(color0); local
524 int b0 = blue(color0); local
[all...]
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothGattCharacteristic.java711 private int unsignedBytesToInt(byte b0, byte b1) { argument
712 return (unsignedByteToInt(b0) + (unsignedByteToInt(b1) << 8));
718 private int unsignedBytesToInt(byte b0, byte b1, byte b2, byte b3) { argument
719 return (unsignedByteToInt(b0) + (unsignedByteToInt(b1) << 8))
726 private float bytesToFloat(byte b0, byte b1) { argument
727 int mantissa = unsignedToSigned(unsignedByteToInt(b0)
736 private float bytesToFloat(byte b0, byte b1, byte b2, byte b3) { argument
737 int mantissa = unsignedToSigned(unsignedByteToInt(b0)
/frameworks/av/media/libeffects/testlibs/
H A DAudioBiquadFilter.cpp156 const audio_coef_t b0 = mCoefs[0]; local
164 acc = mul_coef_sample(b0, x0);
203 const audio_coef_t b0 = mCoefs[0]; local
217 acc = mul_coef_sample(b0, x0);
/frameworks/base/core/java/android/net/
H A DSntpClient.java220 byte b0 = buffer[offset];
226 int i0 = ((b0 & 0x80) == 0x80 ? (b0 & 0x7F) + 0x80 : b0);
/frameworks/base/services/core/java/com/android/server/am/
H A DNativeCrashListener.java166 int b0, b1, b2, b3;
168 b0 = ((int) buf[offset]) & 0xFF; // mask against sign extension
172 return (b0 << 24) | (b1 << 16) | (b2 << 8) | b3;
/frameworks/base/core/tests/coretests/src/android/graphics/
H A DBitmapTest.java222 int b0 = Color.blue(c0);
224 int bb = computePrePostMul(a0, b0);
/frameworks/base/core/tests/coretests/src/android/os/
H A DAidlTest.java288 boolean[] b0 = new boolean[]{true};
291 boolean[] br = mRemote.booleanArray(b0, b1, b2);
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DDropBoxTest.java299 DropBoxManager.Entry b0 = dropbox.getNextEntry("DropBoxTest.B", before);
300 assertTrue(null == dropbox.getNextEntry("DropBoxTest.B", b0.getTimeMillis()));
312 assertEquals("DropBoxTest.B", b0.getTag());
313 assertEquals("B0", b0.getText(80));
324 b0.close();
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/shadowutil/
H A DSpotShadow.java85 float b0 = poly[k * 3 + 0] - poly[0 * 3 + 0];
89 float c1 = a2 * b0 - b2 * a0;
90 float c2 = a0 * b1 - b0 * a1;
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 880 milliseconds