Searched defs:b1 (Results 1 - 25 of 44) sorted by path

12

/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/codecs/on2/h264dec/source/
H A Dh264bsd_reconstruct.c1223 i32 *ptrC, *ptrV, *b1; local
1247 b1 = table;
1272 *b1++ = tmp6;
1282 *b1++ = tmp5;
1292 *b1++ = tmp4;
1302 *b1++ = tmp3;
1410 i32 *ptrC, *ptrV, *ptrInt, *b1; local
1434 b1 = table;
1457 *b1++ = tmp6;
1467 *b1
[all...]
/frameworks/av/media/libstagefright/colorconversion/
H A DColorConverter.cpp200 signed b1 = (tmp1 + u_b) / 256; local
212 | (kAdjustedClip[b1] >> 3);
279 signed r1, signed g1, signed b1,
287 | (kAdjustedClip[b1] >> 3);
306 | (kAdjustedClip[b1] << 16)
321 (kAdjustedClip[b1])
394 signed b1 = (tmp1 + u_b) / 256; local
405 kAdjustedClip, uncropped, r1, g1, b1, r2, g2, b2);
455 signed b1 = (tmp1 + u_b) / 256;
465 ((kAdjustedClip[b1] >>
277 writeToDst( void *dst_ptr, uint8_t *kAdjustedClip, bool uncropped, signed r1, signed g1, signed b1, signed r2, signed g2, signed b2) argument
529 signed b1 = (tmp1 + u_b) / 256; local
599 signed b1 = (tmp1 + u_b) / 256; 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
728 + ((unsignedByteToInt(b1) & 0x0F) << 8), 12);
729 int exponent = unsignedToSigned(unsignedByteToInt(b1) >> 4, 4);
736 private float bytesToFloat(byte b0, byte b1, byte b2, byte b3) { argument
738 + (unsignedByteToInt(b1) << 8)
/frameworks/base/core/java/android/content/
H A DPeriodicSync.java138 public static boolean syncExtrasEquals(Bundle b1, Bundle b2) { argument
139 if (b1.size() != b2.size()) {
142 if (b1.isEmpty()) {
145 for (String key : b1.keySet()) {
151 if (!Objects.equals(b1.get(key), b2.get(key))) {
/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/libs/androidfw/include/androidfw/
H A DStringPiece.h185 const char* b1 = data_ != nullptr ? data_ : &nullStr; local
186 const char* e1 = b1 + length_;
190 while (b1 < e1 && b2 < e2) {
191 const int d = static_cast<int>(*b1++) - static_cast<int>(*b2++);
226 const char16_t* b1 = data_ != nullptr ? data_ : &nullStr; local
228 return strzcmp16(b1, length_, b2, rhs.length_);
/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/packages/Osu/src/com/android/hotspot2/utils/
H A DHTTPResponse.java173 private static boolean equals(byte[] b1, int offset, byte[] pattern) { argument
175 if (b1[n + offset] != pattern[n]) {
/frameworks/base/services/core/java/com/android/server/
H A DAlarmManagerService.java627 public int compare(Batch b1, Batch b2) { argument
628 long when1 = b1.start;
/frameworks/base/services/core/java/com/android/server/content/
H A DSyncManager.java3624 * @param b1 bundle to compare
3628 public static boolean syncExtrasEquals(Bundle b1, Bundle b2, boolean includeSyncSettings) { argument
3629 if (b1 == b2) {
3633 if (includeSyncSettings && b1.size() != b2.size()) {
3636 Bundle bigger = b1.size() > b2.size() ? b1 : b2;
3637 Bundle smaller = b1.size() > b2.size() ? b2 : b1;
/frameworks/base/services/tests/shortcutmanagerutils/src/com/android/server/pm/shortcutmanagertest/
H A DShortcutManagerTestUtils.java999 public static void assertBundlesEqual(BaseBundle b1, BaseBundle b2) { argument
1000 if (b1 == null && b2 == null) {
1003 assertNotNull("b1 is null but b2 is not", b1);
1004 assertNotNull("b2 is null but b1 is not", b2);
1007 assertEquals(set(b1.keySet()), set(b2.keySet()));
1009 for (String key : b1.keySet()) {
1010 final Object v1 = b1.get(key);
1022 + " b1=" + b1
[all...]
/frameworks/base/tests/net/java/com/android/internal/util/
H A DBitUtilsTest.java35 byte b1 = 1;
38 assertEquals(1, uint8(b1));
100 static byte[] bytes(int b1, int b2, int b3, int b4) { argument
101 return new byte[] {b(b1), b(b2), b(b3), b(b4)};
/frameworks/base/tools/aapt2/util/
H A DBigBuffer_test.cpp35 char* b1 = buffer.NextBlock<char>(8); local
36 EXPECT_THAT(b1, NotNull());
41 EXPECT_EQ(b1 + 8, b2);
54 uint32_t* b1 = buffer.NextBlock<uint32_t>(); local
55 ASSERT_THAT(b1, NotNull());
56 *b1 = 33;
60 b1 = buffer2.NextBlock<uint32_t>();
61 ASSERT_THAT(b1, NotNull());
62 *b1 = 44;
/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. ...
/frameworks/ml/nn/common/operations/internal/optimized/
H A Ddepthwiseconv_uint8.h1314 const int32x4_t b1 = vld1q_s32(bias_data + 4); local
1317 vst1q_s32(acc_buffer + 8 * i + 4, b1);
1319 vst1q_s32(acc_buffer + 8 * i + 12, b1);
1323 vst1q_s32(acc_buffer + 8 * i + 4, b1);
1327 const int32x4_t b1 = vld1q_s32(bias_data + 4); local
1332 vst1q_s32(acc_buffer + 16 * i + 4, b1);
H A Doptimized_ops.h241 auto b1 = vld1q_f32(bias_data + i + 4); local
249 auto x1 = vaddq_f32(a1, b1);
/frameworks/ml/nn/runtime/test/specs/
H A Dconv_float.mod.py20 b1 = Parameter("op3", "TENSOR_FLOAT32", "{1}", [0]) variable
28 model = model.Operation("CONV_2D", i1, f1, b1, pad0, pad0, pad0, pad0, stride, stride, act).To(output)
H A Dconv_float_channels.mod.py20 b1 = Parameter("op3", "TENSOR_FLOAT32", "{3}", [0., 0., 0.]) variable
28 model = model.Operation("CONV_2D", i1, f1, b1, pad0, pad0, pad0, pad0, stride, stride, act).To(output)
H A Dconv_float_channels_weights_as_inputs.mod.py20 b1 = Input("op3", "TENSOR_FLOAT32", "{3}") variable
28 model = model.Operation("CONV_2D", i1, f1, b1, pad0, pad0, pad0, pad0, stride, stride, act).To(output)
37 b1:
H A Dconv_float_large.mod.py20 b1 = Parameter("op3", "TENSOR_FLOAT32", "{3}", [0., 0., 0.]) variable
28 model = model.Operation("CONV_2D", i1, f1, b1, pad0, pad0, pad0, pad0, stride, stride, act).To(output)
H A Dconv_float_large_weights_as_inputs.mod.py20 b1 = Input("op3", "TENSOR_FLOAT32", "{3}") variable
28 model = model.Operation("CONV_2D", i1, f1, b1, pad0, pad0, pad0, pad0, stride, stride, act).To(output)
38 b1:
H A Dconv_float_weights_as_inputs.mod.py20 b1 = Input("op3", "TENSOR_FLOAT32", "{1}") variable
28 model = model.Operation("CONV_2D", i1, f1, b1, pad0, pad0, pad0, pad0, stride, stride, act).To(output)
35 b1:
H A Dconv_quant8.mod.py22 b1 = Parameter("op3", "TENSOR_INT32", "{1}, 0.25f, 0", [4]) variable
30 model = model.Operation("CONV_2D", i1, f1, b1, pad0, pad0, pad0, pad0, stride,
38 # (i1 (conv) f1) + b1
H A Dconv_quant8_channels.mod.py20 b1 = Parameter("op3", "TENSOR_INT32", "{3}, 0.25, 0", [0, 0, 0]) variable
26 model = model.Operation("CONV_2D", i1, f1, b1, pad0, pad0, pad0, pad0, stride, stride, act).To(output)

Completed in 796 milliseconds

12