Searched refs:b1 (Results 1 - 21 of 21) sorted by relevance

/frameworks/base/services/tests/servicestests/src/com/android/server/content/
H A DSyncOperationTest.java43 Bundle b1 = new Bundle();
51 b1,
63 b1,
75 b1,
87 b1,
115 Bundle b1 = new Bundle();
122 "authority1", b1, soon, soonFlex, unimportant, unimportant, true);
126 "authority1", b1, after, afterFlex, unimportant, unimportant, true);
136 "authority1", b1, soon + 100, soonFlex + 100, unimportant, unimportant, true);
/frameworks/native/opengl/libagl/
H A Dmatrix.h111 GLfixed a1, GLfixed b1,
125 "%r"(a1), "r"(b1),
134 int64_t(a1)*b1)>>16) + c;
140 GLfixed a1, GLfixed b1,
156 "%r"(a1), "r"(b1),
169 "madd %[a1],%[b1] \r\n"
178 : [a0] "r" (a0),[b0] "r" (b0),[a1] "r" (a1),[b1] "r" (b1),[a2] "r" (a2),[b2] "r" (b2),[c] "r" (c)
186 int64_t(a1)*b1 +
192 // b0, b1, b
110 mla2a( GLfixed a0, GLfixed b0, GLfixed a1, GLfixed b1, GLfixed c) argument
139 mla3a( GLfixed a0, GLfixed b0, GLfixed a1, GLfixed b1, GLfixed a2, GLfixed b2, GLfixed c) argument
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.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/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;
98 b1 = base64Alphabet[base64Data[dataIndex]];
106 decodedData[encodedIndex] = (byte) (b1 << 2 | b2 >> 4);
112 decodedData[encodedIndex] = (byte) (b1 << 2 | b2 >> 4);
117 decodedData[encodedIndex] = (byte) (b1 << 2 | b2 >> 4);
/frameworks/base/core/java/android/content/
H A DPeriodicSync.java139 public static boolean syncExtrasEquals(Bundle b1, Bundle b2) { argument
140 if (b1.size() != b2.size()) {
143 if (b1.isEmpty()) {
146 for (String key : b1.keySet()) {
150 if (!b1.get(key).equals(b2.get(key))) {
/frameworks/base/nfc-extras/tests/src/com/android/nfc_extras/tests/
H A DBasicNfcEeTest.java111 private static void assertByteArrayEquals(byte[] b1, byte[] b2) { argument
112 assertEquals(b1.length, b2.length);
113 for (int i = 0; i < b1.length; i++) {
114 assertEquals(b1[i], b2[i]);
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothGattCharacteristic.java644 private int unsignedBytesToInt(byte b0, byte b1) { argument
645 return (unsignedByteToInt(b0) + (unsignedByteToInt(b1) << 8));
651 private int unsignedBytesToInt(byte b0, byte b1, byte b2, byte b3) { argument
652 return (unsignedByteToInt(b0) + (unsignedByteToInt(b1) << 8))
659 private float bytesToFloat(byte b0, byte b1) { argument
661 + ((unsignedByteToInt(b1) & 0x0F) << 8), 12);
662 int exponent = unsignedToSigned(unsignedByteToInt(b1) >> 4, 4);
669 private float bytesToFloat(byte b0, byte b1, byte b2, byte b3) { argument
671 + (unsignedByteToInt(b1) << 8)
/frameworks/base/core/java/android/net/
H A DSntpClient.java167 byte b1 = buffer[offset+1];
173 int i1 = ((b1 & 0x80) == 0x80 ? (b1 & 0x7F) + 0x80 : b1);
/frameworks/base/media/java/android/media/
H A DThumbnailUtils.java426 Bitmap b1;
429 b1 = Bitmap.createBitmap(source, 0, 0,
432 b1 = source;
435 if (recycle && b1 != source) {
439 int dx1 = Math.max(0, b1.getWidth() - targetWidth);
440 int dy1 = Math.max(0, b1.getHeight() - targetHeight);
443 b1,
449 if (b2 != b1) {
450 if (recycle || b1 != source) {
451 b1
[all...]
/frameworks/av/media/libeffects/testlibs/
H A DAudioBiquadFilter.cpp157 const audio_coef_t b1 = mCoefs[1]; local
165 acc = mac_coef_sample(b1, x1, acc);
204 const audio_coef_t b1 = mCoefs[1]; local
218 acc = mac_coef_sample(b1, x1, acc);
/frameworks/av/media/libstagefright/colorconversion/
H A DColorConverter.cpp166 signed b1 = (tmp1 + u_b) / 256; local
178 | (kAdjustedClip[b1] >> 3);
254 signed b1 = (tmp1 + u_b) / 256; local
266 | (kAdjustedClip[b1] >> 3);
327 signed b1 = (tmp1 + u_b) / 256; local
337 ((kAdjustedClip[b1] >> 3) << 11)
401 signed b1 = (tmp1 + u_b) / 256; local
411 ((kAdjustedClip[b1] >> 3) << 11)
471 signed b1 = (tmp1 + u_b) / 256; local
483 | (kAdjustedClip[b1] >>
[all...]
/frameworks/native/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/services/java/com/android/server/am/
H A DNativeCrashListener.java171 int b0, b1, b2, b3;
174 b1 = ((int) buf[offset+1]) & 0xFF;
177 return (b0 << 24) | (b1 << 16) | (b2 << 8) | b3;
/frameworks/base/core/tests/coretests/src/android/os/
H A DAidlTest.java289 boolean[] b1 = new boolean[]{false, true};
291 boolean[] br = mRemote.booleanArray(b0, b1, b2);
296 assertTrue(b1[0]);
297 assertFalse(b1[1]);
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/graphics/tests/graphicstests/src/android/graphics/
H A DBitmapTest.java222 int b1 = Color.blue(c1);
224 assertTrue("blue", Math.abs(bb - b1) <= tolerance);
/frameworks/base/services/java/com/android/server/
H A DAssetAtlasService.java155 public int compare(Bitmap b1, Bitmap b2) {
156 if (b1.getWidth() == b2.getWidth()) {
157 return b2.getHeight() - b1.getHeight();
159 return b2.getWidth() - b1.getWidth();
H A DAlarmManagerService.java306 public int compare(Batch b1, Batch b2) { argument
307 long when1 = b1.start;
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_reconstruct.c1221 i32 *ptrC, *ptrV, *b1; local
1245 b1 = table;
1270 *b1++ = tmp6;
1280 *b1++ = tmp5;
1290 *b1++ = tmp4;
1300 *b1++ = tmp3;
1408 i32 *ptrC, *ptrV, *ptrInt, *b1; local
1432 b1 = table;
1455 *b1++ = tmp6;
1465 *b1
[all...]
/frameworks/av/services/audioflinger/
H A DAudioMixer.cpp1359 AudioBufferProvider::Buffer& b1(t1.buffer);
1396 b1.frameCount = numFrames;
1399 t1.bufferProvider->getNextBuffer(&b1, outputPTS);
1400 if (b1.i16 == NULL) {
1405 b1.frameCount = numFrames;
1407 in1 = b1.i16;
1409 frameCount1 = b1.frameCount;
1437 t1.bufferProvider->releaseBuffer(&b1);
/frameworks/base/media/tests/contents/media_api/music/
H A Dtest_amr_ietf.amr77 |s��9Y���<;~J����!��Ky��bX� �7��;�#�<4FS�����'�졜L���-�!�+�� <E~N���Ն�ĉ�b� �J�]ZC�9y���p<Ft� OO0�>�V��H���IR�z�`�<AS�P<FR�1G��g)Z �o�;r b��M���z�Ĥ�<;$��� w+�P�r%�������������<~0�`?��s�ڒR�?@�fc$�,N��Y�$�<x0�a�h%�+��C��=�k_?^E�U�V�<~ZFf=xA����Ь*�N�J�� �4F'���<x2�g����[�> ��w�&��C��[�<{s6g����{(��Z�1��W�X~m�����<"/�mu��؟jR�Ӧi6f|�{T�b��E�<yl>{5�p�Y�̗�*���b1����#�<:Z�~���c�;�~=�c����foP���Y� <;lF�S��.�9S��� �m��M�#�l?�<<^�*����lp$x_H�8��Cn��J�P<;mG�`!��K�eu� ����g�MNX)�Ip�<5���P��K�S��LUA�48-��?�< 9$E�zA�c�nw���[���v������<(*���A�-j(D�U�J���j���d�߀<D9$'�\��N'_&=%��=+p��2�����<5���E�|�8���3�"�ޫ�C�o�ԩG@<�9m/����\��r���d� �j���MP<������`���:�a�'�I:�!���QP<1w���A��F����[B ��` �4K�<A��$���#��1P��$�O'5���<�t�� 8��VE�e CLNT�y�=� Y���@<�J �iȁ��K�&�8� �`jR�x�a`&���@<4ɣW\���L��F"n�=H$�1mST�T<"M(��֌�3?��K�s���/s���p< 6 �%�Ի�����vpč,|����+T�Ұ<.>1��I��� ���]l ��9��< 2�xZ�����YwJ�u�&�! ͛T��<9�;T`Z��������Q��4I#�� ���<����ݗcݖ����-�G"�U��[ʹ�?i.�<@)��*�o6*�Q�滅�c�?V)�4@��p<&�i)�z�vs���i��"����Y@��<#g1@�.G�+H*��sm�ĦA�$]�� `D��<$�`5\d堏HE�3��T}v4J��ՏCٹ <-�Gq�

Completed in 1545 milliseconds