Searched defs:b1 (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/services/sensorservice/
H A DSecondOrderLowPassFilter.h38 float b1, b2; member in class:android::SecondOrderLowPassFilter
/frameworks/base/opengl/libagl/
H A Dmatrix.h87 GLfixed a1, GLfixed b1,
101 "%r"(a1), "r"(b1),
110 int64_t(a1)*b1)>>16) + c;
116 GLfixed a1, GLfixed b1,
132 "%r"(a1), "r"(b1),
142 int64_t(a1)*b1 +
148 // b0, b1, b2 are signed 16-bit quanities
179 int16_t b1 = (b1b0 >> 16) & 0xffff;
181 accum += int64_t(a1)*int16_t(b1) >> 16;
220 int16_t b1
86 mla2a( GLfixed a0, GLfixed b0, GLfixed a1, GLfixed b1, GLfixed c) argument
115 mla3a( GLfixed a0, GLfixed b0, GLfixed a1, GLfixed b1, GLfixed a2, GLfixed b2, GLfixed c) argument
272 mla3( GLfixed a0, GLfixed b0, GLfixed a1, GLfixed b1, GLfixed a2, GLfixed b2) argument
303 mla4( GLfixed a0, GLfixed b0, GLfixed a1, GLfixed b1, GLfixed a2, GLfixed b2, GLfixed a3, GLfixed b3) argument
[all...]
H A Ddxt.cpp102 int b1 = (x >> 16) & 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
169 // &: b31 (b31 & b30) (b29 & b28) ... (b2 & b1) (b1 & b0)
170 // & 0x55..: 0 (b31 & b30) 0 ... 0 (b1 & b0)
241 int b1 = blue(color1); local
245 c[1] = (r1 << 11) | ((g1 >> 1) << 6) | (b1 << 1) | 0x1;
261 b2 = avg23(b0, b1);
371 int b1 = blue(color1); local
528 int b1 = blue(color1); local
[all...]
/frameworks/base/core/tests/coretests/src/android/os/
H A DPerformanceCollectorTest.java477 private void assertEqualsBundle(Bundle b1, Bundle b2) { argument
478 assertEquals(b1.keySet(), b2.keySet());
479 for (String key : b1.keySet()) {
480 assertEquals(b1.get(key), b2.get(key));
/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
626 /* Unchain CBC using the previous ciphertext block in b1 */
628 buf[i] ^= b1[i];
647 b3[i] ^= b1[i];
664 bt = b1, b1 = b2, b2 = b3, b3 = bt;
/frameworks/base/media/libeffects/testlibs/
H A DAudioBiquadFilter.cpp159 const audio_coef_t b1 = mCoefs[1]; local
167 acc = mac_coef_sample(b1, x1, acc);
206 const audio_coef_t b1 = mCoefs[1]; local
220 acc = mac_coef_sample(b1, x1, acc);
/frameworks/base/media/libstagefright/colorconversion/
H A DColorConverter.cpp115 signed b1 = (tmp1 + u_b) / 256; local
127 | (kAdjustedClip[b1] >> 3);
193 signed b1 = (tmp1 + u_b) / 256; local
205 | (kAdjustedClip[b1] >> 3);
256 signed b1 = (tmp1 + u_b) / 256; local
266 ((kAdjustedClip[b1] >> 3) << 11)
318 signed b1 = (tmp1 + u_b) / 256; local
328 ((kAdjustedClip[b1] >> 3) << 11)
/frameworks/base/opengl/libs/ETC1/
H A Detc1.cpp203 int r1, r2, g1, g2, b1, b2; local
213 b1 = convert5To8(bBase);
221 b1 = convert4To8(high >> 12);
229 decode_subblock(pOut, r1, g1, b1, tableA, low, false, flipped);
379 int r1, g1, b1, r2, g2, b2; // 8 bit base colors for sub-blocks local
391 b1 = convert5To8(b51);
417 b1 = convert4To8(b41);
426 pBaseColors[2] = b1;
/frameworks/base/packages/TtsService/jni/
H A Dandroid_tts_SynthProxy.cpp75 double a0, a1, a2, b0, b1, b2; variable
100 b1 = 2.0F * amp * ((amp-1.0F) - ((amp+1.0F)*cosw));
107 m_fb = fFilterGain * b1/a0;
/frameworks/base/core/java/android/content/
H A DSyncStorageEngine.java994 public static boolean equals(Bundle b1, Bundle b2) { argument
995 if (b1.size() != b2.size()) {
998 if (b1.isEmpty()) {
1001 for (String key : b1.keySet()) {
1005 if (!b1.get(key).equals(b2.get(key))) {

Completed in 308 milliseconds