Home
last modified time | relevance | path

Searched refs:b0 (Results 1 – 9 of 9) sorted by relevance

/frameworks/native/opengl/libagl/
Dmatrix.h110 static inline GLfixed mla2a( GLfixed a0, GLfixed b0, in mla2a() argument
124 : "%r"(a0), "r"(b0), in mla2a()
133 return (( int64_t(a0)*b0 + in mla2a()
139 static inline GLfixed mla3a( GLfixed a0, GLfixed b0, in mla3a() argument
155 : "%r"(a0), "r"(b0), in mla3a()
178 …: [a0] "r" (a0),[b0] "r" (b0),[a1] "r" (a1),[b1] "r" (b1),[a2] "r" (a2),[b2] "r" (b2),[c] "r" (c) in mla3a()
185 return (( int64_t(a0)*b0 + in mla3a()
222 int16_t b0 = b1b0 & 0xffff; in mla3a16()
224 accum = int64_t(a0)*int16_t(b0) >> 16; in mla3a16()
263 int16_t b0 = b1b0 & 0xffff; in mla3a16_btb()
[all …]
Ddxt.cpp101 int b0 = (x >> 24) & 0xff; in swap() local
106 return (uint32_t)((b3 << 24) | (b2 << 16) | (b1 << 8) | b0); in swap()
237 int b0 = blue(color0); in decodeDXT1() local
244 c[0] = (r0 << 11) | ((g0 >> 1) << 6) | (b0 << 1) | 0x1; in decodeDXT1()
261 b2 = avg23(b0, b1); in decodeDXT1()
265 b3 = avg23(b1, b0); in decodeDXT1()
270 b2 = (b0 + b1) >> 1; in decodeDXT1()
367 int b0 = blue(color0); in decodeDXT3() local
375 int b2 = avg23(b0, b1); in decodeDXT3()
379 int b3 = avg23(b1, b0); in decodeDXT3()
[all …]
/frameworks/base/core/java/android/bluetooth/
DBluetoothGattCharacteristic.java643 private int unsignedBytesToInt(byte b0, byte b1) { in unsignedBytesToInt() argument
644 return (unsignedByteToInt(b0) + (unsignedByteToInt(b1) << 8)); in unsignedBytesToInt()
650 private int unsignedBytesToInt(byte b0, byte b1, byte b2, byte b3) { in unsignedBytesToInt() argument
651 return (unsignedByteToInt(b0) + (unsignedByteToInt(b1) << 8)) in unsignedBytesToInt()
658 private float bytesToFloat(byte b0, byte b1) { in bytesToFloat() argument
659 int mantissa = unsignedToSigned(unsignedByteToInt(b0) in bytesToFloat()
668 private float bytesToFloat(byte b0, byte b1, byte b2, byte b3) { in bytesToFloat() argument
669 int mantissa = unsignedToSigned(unsignedByteToInt(b0) in bytesToFloat()
/frameworks/base/core/java/android/net/
DSntpClient.java165 byte b0 = buffer[offset]; in read32()
171 int i0 = ((b0 & 0x80) == 0x80 ? (b0 & 0x7F) + 0x80 : b0); in read32()
/frameworks/av/media/libeffects/testlibs/
DAudioBiquadFilter.cpp156 const audio_coef_t b0 = mCoefs[0]; in process_normal_mono() local
164 acc = mul_coef_sample(b0, x0); in process_normal_mono()
203 const audio_coef_t b0 = mCoefs[0]; in process_normal_multi() local
217 acc = mul_coef_sample(b0, x0); in process_normal_multi()
/frameworks/base/services/core/java/com/android/server/am/
DNativeCrashListener.java171 int b0, b1, b2, b3; in unpackInt() local
173 b0 = ((int) buf[offset]) & 0xFF; // mask against sign extension in unpackInt()
177 return (b0 << 24) | (b1 << 16) | (b2 << 8) | b3; in unpackInt()
/frameworks/base/graphics/tests/graphicstests/src/android/graphics/
DBitmapTest.java221 int b0 = Color.blue(c0); in testSetPixelsWithNonOpaqueAlpha() local
223 int bb = computePrePostMul(a0, b0); in testSetPixelsWithNonOpaqueAlpha()
/frameworks/base/services/tests/servicestests/src/com/android/server/
DDropBoxTest.java294 DropBoxManager.Entry b0 = dropbox.getNextEntry("DropBoxTest.B", before); in testGetNextEntry() local
295 assertTrue(null == dropbox.getNextEntry("DropBoxTest.B", b0.getTimeMillis())); in testGetNextEntry()
307 assertEquals("DropBoxTest.B", b0.getTag()); in testGetNextEntry()
308 assertEquals("B0", b0.getText(80)); in testGetNextEntry()
319 b0.close(); in testGetNextEntry()
/frameworks/base/core/tests/coretests/src/android/os/
DAidlTest.java288 boolean[] b0 = new boolean[]{true}; in testArrays()
291 boolean[] br = mRemote.booleanArray(b0, b1, b2); in testArrays()