Home
last modified time | relevance | path

Searched refs:b3 (Results 1 – 22 of 22) sorted by relevance

/frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
DBase64.java75 byte b1 = 0, b2 = 0, b3 = 0, b4 = 0, marker0 = 0, marker1 = 0; in decodeBase64()
103 b3 = base64Alphabet[marker0]; in decodeBase64()
108 (byte) (((b2 & 0xf) << 4) | ((b3 >> 2) & 0xf)); in decodeBase64()
109 decodedData[encodedIndex + 2] = (byte) (b3 << 6 | b4); in decodeBase64()
115 b3 = base64Alphabet[marker0]; in decodeBase64()
119 (byte) (((b2 & 0xf) << 4) | ((b3 >> 2) & 0xf)); in decodeBase64()
/frameworks/ml/nn/runtime/test/specs/V1_2/
Dgrouped_conv2d.mod.py107 b3 = Parameter("op3", "TENSOR_FLOAT32", "{6}", [10, -20, 30, -40, 50, -60]) # bias variable
109 Model("channel").Operation("GROUPED_CONV_2D", i3, w3, b3, 1, 1, 1, 3, 0, layout).To(o3)
115 b3: ("TENSOR_INT32", 0.125, 0),
122b3: ("TENSOR_INT32", 0.0, 0, SymmPerChannelQuantParams(channelDim=0, scales=[0.125, 0.15] * 3, hid…
135 …AddNchw(i3, o3, layout).AddVariations("relaxed", quant8, channelQuant8, "float16").AddInput(w3, b3)
Ddepthwise_conv2d_v1_2.mod.py89 b3 = Parameter("op3", "TENSOR_FLOAT32", "{2}", [100, 200]) variable
91 Model("large").Operation("DEPTHWISE_CONV_2D", i3, f3, b3, 0, 0, 0, 0, 1, 1, 1, 0, layout).To(o3)
97 b3: ("TENSOR_INT32", 0.0625, 0),
103b3: ("TENSOR_INT32", 0.0, 0, SymmPerChannelQuantParams(channelDim=0, scales=[0.0625, 0.125], hide=…
111 }).AddNchw(i3, o3, layout).AddInput(f3, b3).AddVariations("relaxed", "float16", quant8, channelQuan…
Ddepthwise_conv2d_per_channel.mod.py56 b3 = Parameter("op3", "TENSOR_INT32", "{4}", [4, 4, 4, 4]) variable
58 Model("layout").Operation("DEPTHWISE_CONV_2D", i3, f3, b3, 0, 0, 0, 0, 1, 1, 2, 0, layout).To(o3)
65 }).AddNchw(i3, o3, layout).AddInput(f3, b3)
Dconv2d_dilation.mod.py125 b3 = Parameter("op3", "TENSOR_FLOAT32", "{1}", [0]) variable
127 Model().Operation("CONV_2D", i3, f3, b3, 1, 2, 2, 0, layout, 3, 3).To(o3)
133 b3: ("TENSOR_INT32", 0.0625, 0),
146 }).AddNchw(i3, o3, layout).AddInput(f3, b3).AddVariations("relaxed", quant8, "float16")
Dconv2d_v1_2.mod.py78 b3 = Parameter("op3", "TENSOR_FLOAT32", "{3}", [0., 0., 0.]) variable
80 Model("channel").Operation("CONV_2D", i3, f3, b3, 0, 0, 0, 0, 1, 1, 0, layout).To(o3)
86 b3: ("TENSOR_INT32", 0.25, 0),
92b3: ("TENSOR_INT32", 0.0, 0, SymmPerChannelQuantParams(channelDim=0, scales=[0.25, 0.2, 0.15], hid…
100 }).AddNchw(i3, o3, layout).AddInput(f3, b3).AddVariations("relaxed", quant8, channelQuant8, "float1…
Dtranspose_conv2d.mod.py103 b3 = Parameter("op3", "TENSOR_FLOAT32", "{1}", [0]) # bias variable
106 Model().Operation("TRANSPOSE_CONV_2D", i3, w3, b3, s3, 1, 1, 1, 0, layout).To(o3)
112 b3: ("TENSOR_INT32", 0.25, 0),
123 }).AddNchw(i3, o3, s3, layout).AddVariations("relaxed", quant8, "float16").AddInput(w3, b3)
/frameworks/native/opengl/libagl/
Ddxt.cpp104 int b3 = (x ) & 0xff; in swap() local
106 return (uint32_t)((b3 << 24) | (b2 << 16) | (b1 << 8) | b0); in swap()
251 int r2, g2, b2, r3, g3, b3, a3; in decodeDXT1() local
265 b3 = avg23(b1, b0); in decodeDXT1()
272 r3 = g3 = b3 = a3 = 0; in decodeDXT1()
278 (b3 << 1) | a3; in decodeDXT1()
281 c[3] = (r3 << 11) | (g3 << 5) | b3; in decodeDXT1()
379 int b3 = avg23(b1, b0); in decodeDXT3() local
384 c[3] = rgb565SepTo888(r3, g3, b3); in decodeDXT3()
536 int b3 = avg23(b1, b0); in decodeDXT5() local
[all …]
Dmatrix.h350 GLfixed a3, GLfixed b3) in mla4() argument
367 "%r"(a3), "r"(b3) in mla4()
377 int64_t(a3)*b3 + 0x8000)>>16); in mla4()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/csharp/src/Google.Protobuf/
DCodedOutputStream.cs431 public void WriteRawTag(byte b1, byte b2, byte b3) in WriteRawTag() argument
435 WriteRawByte(b3); in WriteRawTag()
445 public void WriteRawTag(byte b1, byte b2, byte b3, byte b4) in WriteRawTag() argument
449 WriteRawByte(b3); in WriteRawTag()
461 public void WriteRawTag(byte b1, byte b2, byte b3, byte b4, byte b5) in WriteRawTag() argument
465 WriteRawByte(b3); in WriteRawTag()
DCodedInputStream.cs869 uint b3 = ReadRawByte(); in ReadRawLittleEndian32()
871 return b1 | (b2 << 8) | (b3 << 16) | (b4 << 24); in ReadRawLittleEndian32()
881 ulong b3 = ReadRawByte(); in ReadRawLittleEndian64()
887 return b1 | (b2 << 8) | (b3 << 16) | (b4 << 24) in ReadRawLittleEndian64()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/csharp/src/Google.Protobuf.Test/
DByteStringTest.cs46 ByteString b3 = ByteString.CopyFrom(1, 2, 4); in Equality()
50 EqualityTester.AssertInequality(b1, b3); in Equality()
56 Assert.IsFalse(b1 == b3); in Equality()
63 Assert.IsTrue(b1 != b3); in Equality()
/frameworks/base/core/java/android/net/
DSntpClient.java240 byte b3 = buffer[offset+3]; in read32()
246 int i3 = ((b3 & 0x80) == 0x80 ? (b3 & 0x7F) + 0x80 : b3); in read32()
/frameworks/base/services/usb/java/com/android/server/usb/descriptors/
DByteStream.java171 int b3 = getUnsignedByte(); in unpackUsbInt() local
172 return (b3 << 24) | (b2 << 16) | (b1 << 8) | b0; in unpackUsbInt()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/javanano/src/main/java/com/google/protobuf/nano/
DCodedInputByteBufferNano.java339 final byte b3 = readRawByte(); in readRawLittleEndian32()
343 ((b3 & 0xff) << 16) | in readRawLittleEndian32()
351 final byte b3 = readRawByte(); in readRawLittleEndian64()
359 (((long)b3 & 0xff) << 16) | in readRawLittleEndian64()
/frameworks/base/services/core/java/com/android/server/am/
DNativeCrashListener.java165 int b0, b1, b2, b3; in unpackInt() local
170 b3 = ((int) buf[offset+3]) & 0xFF; in unpackInt()
171 return (b0 << 24) | (b1 << 16) | (b2 << 8) | b3; in unpackInt()
/frameworks/base/core/java/android/bluetooth/
DBluetoothGattCharacteristic.java732 private int unsignedBytesToInt(byte b0, byte b1, byte b2, byte b3) { in unsignedBytesToInt() argument
734 + (unsignedByteToInt(b2) << 16) + (unsignedByteToInt(b3) << 24); in unsignedBytesToInt()
750 private float bytesToFloat(byte b0, byte b1, byte b2, byte b3) { in bytesToFloat() argument
754 return (float) (mantissa * Math.pow(10, b3)); in bytesToFloat()
/frameworks/base/services/tests/servicestests/assets/KeyStoreRecoveryControllerTest/pem/
Dvalid-cert.pem80 fd:9d:ee:03:74:70:07:d4:b3:7e:ef:7d:17:ae:ad:
85 c2:a1:b3:80:7f:d0:a4:1d:ce:ad:7e:75:33:f0:7b:
155 b9:b3:c9:44:11:b3:02:fd:d1:ae:22:c0:4c:8a:d5:f7:5c:b9:
162 d0:07:a7:60:56:b3:34:cd:48:4c:43:dc:d1:a7:94:7f:c6:a1:
167 2b:bf:35:41:9e:8c:fe:b1:b8:53:81:b3:c7:3d:c0:97:39:4a:
185 c8:cf:05:4d:c4:d9:e6:b9:8d:f4:f1:b3:6c:32:f6:3d:8e:c9:
201 10:48:3c:32:25:6a:d8:8b:a7:fe:9b:ae:03:f6:b3:8a:e0:9c:
/frameworks/base/tests/net/java/com/android/internal/util/
DBitUtilsTest.java129 static byte[] bytes(int b1, int b2, int b3, int b4) { in bytes() argument
130 return new byte[] {b(b1), b(b2), b(b3), b(b4)}; in bytes()
/frameworks/base/core/tests/coretests/src/android/app/servertransaction/
DTransactionParcelTests.java417 boolean b2, boolean b3, Configuration configuration, in bindApplication() argument
531 Debug.MemoryInfo memoryInfo, boolean b, boolean b1, boolean b2, boolean b3, in dumpMemInfo() argument
538 boolean b3, String[] strings) throws RemoteException { in dumpMemInfoProto() argument
/frameworks/native/libs/ui/tests/
DBufferHubBuffer_test.cpp137 auto b3 = BufferHubBuffer::create(kWidth, kHeight, kLayerCount, kFormat, kUsage, in TEST_F() local
140 EXPECT_THAT(b3, IsNull()); in TEST_F()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/javanano/src/test/java/com/google/protobuf/nano/
DNanoTest.java3867 byte[] b3 = new byte[b1.length + b2.length]; in testOneofSerializedConcat()
3868 System.arraycopy(b1, 0, b3, 0, b1.length); in testOneofSerializedConcat()
3869 System.arraycopy(b2, 0, b3, b1.length, b2.length); in testOneofSerializedConcat()
3871 MessageNano.mergeFrom(parsed, b3); in testOneofSerializedConcat()