Home
last modified time | relevance | path

Searched refs:bytes1 (Results 1 – 10 of 10) sorted by relevance

/external/protobuf/js/
Dmessage.js1161 var bytes1 = /** @type {!Uint8Array} */(field1);
1163 if (bytes1.length != bytes2.length) return false;
1164 for (var i = 0; i < bytes1.length; i++) {
1165 if (bytes1[i] != bytes2[i]) return false;
/external/grpc-grpc-java/netty/src/main/java/io/grpc/netty/
DGrpcHttp2HeadersUtils.java174 protected static boolean equals(byte[] bytes0, int offset0, int length0, byte[] bytes1, in equals() argument
179 return PlatformDependent.equals(bytes0, offset0, bytes1, offset1, length0); in equals()
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/SystemZ/
Dvec-combine-02.ll243 %bytes1 = bitcast <2 x i16> %low1 to <4 x i8>
250 %blow0 = shufflevector <4 x i8> %bytes0, <4 x i8> %bytes1,
351 %bytes1 = bitcast <4 x i16> %hlow1 to <8 x i8>
354 %join0 = shufflevector <8 x i8> %bytes0, <8 x i8> %bytes1,
/external/llvm/test/CodeGen/SystemZ/
Dvec-combine-02.ll243 %bytes1 = bitcast <2 x i16> %low1 to <4 x i8>
250 %blow0 = shufflevector <4 x i8> %bytes0, <4 x i8> %bytes1,
351 %bytes1 = bitcast <4 x i16> %hlow1 to <8 x i8>
354 %join0 = shufflevector <8 x i8> %bytes0, <8 x i8> %bytes1,
/external/libxml2/
Druntest.c615 char bytes1[4096]; in compareFiles() local
628 res1 = read(fd1, bytes1, 4096); in compareFiles()
631 res2 = write(fd2, bytes1, res1); in compareFiles()
649 res1 = read(fd1, bytes1, 4096); in compareFiles()
658 if (memcmp(bytes1, bytes2, res1) != 0) { in compareFiles()
/external/python/cpython3/Lib/
Dpickletools.py489 bytes1 = ArgumentDescriptor( variable
1285 arg=bytes1,
/external/robolectric-shadows/resources/src/main/java/org/robolectric/res/android/
DResTable_config.java1094 private boolean isZeroes(byte[] bytes1) { in isZeroes() argument
1095 for (byte b : bytes1) { in isZeroes()
/external/tensorflow/tensorflow/c/
Dc_api_test.cc2217 string bytes1, bytes2; in TEST_F() local
2222 proto.SerializeToString(&bytes1); in TEST_F()
2230 const std::vector<string> list = {bytes1, bytes2}; in TEST_F()
/external/icu/icu4c/source/test/cintltst/
Dudatatst.c1219 MappedData bytes1; member
/external/protobuf/javanano/src/test/java/com/google/protobuf/nano/
DNanoTest.java3947 byte[] bytes1 = {3, 4}; in testNullRepeatedFieldElements()
3956 message.repeatedBytes = new byte[][] {bytes1, null, bytes2}; in testNullRepeatedFieldElements()
3966 assertTrue(Arrays.equals(bytes1, deserialized.repeatedBytes[0])); in testNullRepeatedFieldElements()