Home
last modified time | relevance | path

Searched refs:bytes2 (Results 1 – 8 of 8) sorted by relevance

/external/valgrind/VEX/orig_amd64/
DSortedToOrig.hs18 bytes2 = foo bytes function
24 ". " ++ bytes2 ++ "C3"
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
DParcelTest.java373 final byte[] bytes2 = new byte[bytes.length]; in testReadWriteByteArray()
374 parcel.readByteArray(bytes2); in testReadWriteByteArray()
375 assertTrue(Arrays.equals(bytes, bytes2)); in testReadWriteByteArray()
412 final byte[] bytes2 = parcel.createByteArray(); in testWriteCreateByteArray()
413 assertTrue(Arrays.equals(bytes, bytes2)); in testWriteCreateByteArray()
/external/webrtc/webrtc/p2p/base/
Dstun_unittest.cc1365 StunByteStringAttribute* bytes2 = in TEST_F() local
1367 bytes2->CopyBytes("abcdefghijkl"); in TEST_F()
1368 EXPECT_TRUE(msg2.AddAttribute(bytes2)); in TEST_F()
1386 bytes2 = StunAttribute::CreateByteString(STUN_ATTR_MAGIC_COOKIE); in TEST_F()
1387 bytes2->CopyBytes(reinterpret_cast<const char*>(TURN_MAGIC_COOKIE_VALUE), in TEST_F()
1389 EXPECT_TRUE(msg2.AddAttribute(bytes2)); in TEST_F()
1426 bytes2 = StunAttribute::CreateByteString(STUN_ATTR_DATA); in TEST_F()
1427 bytes2->CopyBytes("abcdefg"); in TEST_F()
1428 EXPECT_TRUE(msg2.AddAttribute(bytes2)); in TEST_F()
/external/llvm/test/CodeGen/SystemZ/
Dvec-combine-02.ll244 %bytes2 = bitcast <2 x i16> %low2 to <4 x i8>
252 %blow1 = shufflevector <4 x i8> %bytes2, <4 x i8> %bytes3,
352 %bytes2 = bitcast <4 x i16> %hlow2 to <8 x i8>
357 %join1 = shufflevector <8 x i8> %bytes2, <8 x i8> %bytes3,
/external/opencv3/modules/core/misc/java/test/
DMatTest.java693 byte[] bytes2 = new byte[] { 10, 20, 30, 40, 50 }; in testPutIntIntByteArray()
694 m.put(2, 2, bytes2); in testPutIntIntByteArray()
/external/libxml2/
Druntest.c611 char bytes2[4096]; in compareFiles() local
623 res2 = read(fd2, bytes2, 4096); in compareFiles()
631 if (memcmp(bytes1, bytes2, res1) != 0) { in compareFiles()
/external/icu/icu4c/source/test/cintltst/
Dudatatst.c1218 UDataInfo bytes2; member
/external/protobuf/java/src/test/java/com/google/protobuf/
DNanoTest.java3669 byte[] bytes2 = {5, 6}; in testNullRepeatedFieldElements()
3677 message.repeatedBytes = new byte[][] {bytes1, null, bytes2}; in testNullRepeatedFieldElements()
3688 assertTrue(Arrays.equals(bytes2, deserialized.repeatedBytes[1])); in testNullRepeatedFieldElements()