Home
last modified time | relevance | path

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

/external/zlib/
Dadler32_simd.c103 const __m128i bytes1 = _mm_loadu_si128((__m128i*)(buf)); in adler32_simd_() local
115 v_s1 = _mm_add_epi32(v_s1, _mm_sad_epu8(bytes1, zero)); in adler32_simd_()
116 const __m128i mad1 = _mm_maddubs_epi16(bytes1, tap1); in adler32_simd_()
259 const uint8x16_t bytes1 = vld1q_u8((uint8_t*)(buf)); in adler32_simd_() local
270 v_s1 = vpadalq_u16(v_s1, vpadalq_u8(vpaddlq_u8(bytes1), bytes2)); in adler32_simd_()
275 v_column_sum_1 = vaddw_u8(v_column_sum_1, vget_low_u8 (bytes1)); in adler32_simd_()
276 v_column_sum_2 = vaddw_u8(v_column_sum_2, vget_high_u8(bytes1)); in adler32_simd_()
/external/angle/third_party/zlib/
Dadler32_simd.c103 const __m128i bytes1 = _mm_loadu_si128((__m128i*)(buf)); in adler32_simd_() local
115 v_s1 = _mm_add_epi32(v_s1, _mm_sad_epu8(bytes1, zero)); in adler32_simd_()
116 const __m128i mad1 = _mm_maddubs_epi16(bytes1, tap1); in adler32_simd_()
259 const uint8x16_t bytes1 = vld1q_u8((uint8_t*)(buf)); in adler32_simd_() local
270 v_s1 = vpadalq_u16(v_s1, vpadalq_u8(vpaddlq_u8(bytes1), bytes2)); in adler32_simd_()
275 v_column_sum_1 = vaddw_u8(v_column_sum_1, vget_low_u8 (bytes1)); in adler32_simd_()
276 v_column_sum_2 = vaddw_u8(v_column_sum_2, vget_high_u8(bytes1)); in adler32_simd_()
/external/rust/crates/serde_cbor/tests/
Dtags.rs41 let bytes1 = parse_cbor_me(&data).unwrap(); in tagged_cbor_roundtrip() localVariable
42 let value1: Value = from_slice(&bytes1).unwrap(); in tagged_cbor_roundtrip()
45 assert_eq!(bytes1, bytes2); in tagged_cbor_roundtrip()
/external/rust/crates/serde_cbor/examples/
Dtags.rs63 let bytes1 = serde_cbor::to_vec(&bookmark)?; in main() localVariable
65 let value1: Value = serde_cbor::from_slice(&bytes1)?; in main()
/external/protobuf/js/
Dmessage_test.js463 var bytes1 = supportsUint8Array ? new Uint8Array([1, 2, 3]) : '123';
464 original.setBytesField(bytes1);
472 [['x2', ['y2', 'z2']], ['x3', ['y3', 'z3']]], bytes1, ,
484 assertObjectEquals(bytes1, original.getBytesField());
501 [['x2', ['y2', 'z2']], ['x3', ['y3', 'z3']]], bytes1, ,
524 var bytes1 = supportsUint8Array ? new Uint8Array([1, 2, 3]) : '123';
526 original.setBytesField(bytes1);
543 assertObjectEquals(bytes1, original.getBytesField());
547 assertObjectEquals(bytes1, original.getBytesField());
Dmessage.js1628 var bytes1 = /** @type {!Uint8Array} */(field1);
1630 if (bytes1.length != bytes2.length) return false;
1631 for (var i = 0; i < bytes1.length; i++) {
1632 if (bytes1[i] != bytes2[i]) return false;
/external/protobuf/js/compatibility_tests/v3.1.0/
Dmessage_test.js431 var bytes1 = supportsUint8Array ? new Uint8Array([1, 2, 3]) : '123';
432 original.setBytesField(bytes1);
438 [['x2', ['y2', 'z2']], ['x3', ['y3', 'z3']]], bytes1,, { 100: [, 'e1'] }],
448 assertObjectEquals(bytes1, original.getBytesField());
459 [['x2', ['y2', 'z2']], ['x3', ['y3', 'z3']]], bytes1,, { 100: [, 'e1'] }],
480 var bytes1 = supportsUint8Array ? new Uint8Array([1, 2, 3]) : '123';
482 original.setBytesField(bytes1);
498 assertObjectEquals(bytes1, original.getBytesField());
502 assertObjectEquals(bytes1, original.getBytesField());
/external/protobuf/js/compatibility_tests/v3.0.0/
Dmessage_test.js475 var bytes1 = supportsUint8Array ? new Uint8Array([1, 2, 3]) : '123';
476 original.setBytesField(bytes1);
482 [['x2', ['y2', 'z2']], ['x3', ['y3', 'z3']]], bytes1,, { 100: [, 'e1'] }],
492 assertObjectEquals(bytes1, original.getBytesField());
503 [['x2', ['y2', 'z2']], ['x3', ['y3', 'z3']]], bytes1,, { 100: [, 'e1'] }],
524 var bytes1 = supportsUint8Array ? new Uint8Array([1, 2, 3]) : '123';
526 original.setBytesField(bytes1);
542 assertObjectEquals(bytes1, original.getBytesField());
546 assertObjectEquals(bytes1, original.getBytesField());
/external/webrtc/third_party/abseil-cpp/absl/container/
Dbtree_test.cc671 int64_t bytes1 = 0, bytes2 = 0; in BtreeAllocatorTest() local
672 PropagatingCountingAlloc<T> allocator1(&bytes1); in BtreeAllocatorTest()
686 int64_t original_bytes1 = bytes1; in BtreeAllocatorTest()
688 EXPECT_GT(bytes1, original_bytes1); in BtreeAllocatorTest()
694 EXPECT_EQ(bytes1, original_bytes1); in BtreeAllocatorTest()
701 EXPECT_GT(bytes2, bytes1); in BtreeAllocatorTest()
709 int64_t original_bytes1 = bytes1; in BtreeAllocatorTest()
711 EXPECT_GT(bytes1, original_bytes1); in BtreeAllocatorTest()
716 EXPECT_EQ(bytes1, original_bytes1); in BtreeAllocatorTest()
723 EXPECT_GT(bytes2, bytes1); in BtreeAllocatorTest()
[all …]
/external/abseil-cpp/absl/container/
Dbtree_test.cc671 int64_t bytes1 = 0, bytes2 = 0; in BtreeAllocatorTest() local
672 PropagatingCountingAlloc<T> allocator1(&bytes1); in BtreeAllocatorTest()
686 int64_t original_bytes1 = bytes1; in BtreeAllocatorTest()
688 EXPECT_GT(bytes1, original_bytes1); in BtreeAllocatorTest()
694 EXPECT_EQ(bytes1, original_bytes1); in BtreeAllocatorTest()
701 EXPECT_GT(bytes2, bytes1); in BtreeAllocatorTest()
709 int64_t original_bytes1 = bytes1; in BtreeAllocatorTest()
711 EXPECT_GT(bytes1, original_bytes1); in BtreeAllocatorTest()
716 EXPECT_EQ(bytes1, original_bytes1); in BtreeAllocatorTest()
723 EXPECT_GT(bytes2, bytes1); in BtreeAllocatorTest()
[all …]
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/container/
Dbtree_test.cc673 int64_t bytes1 = 0, bytes2 = 0; in BtreeAllocatorTest() local
674 PropagatingCountingAlloc<T> allocator1(&bytes1); in BtreeAllocatorTest()
688 int64_t original_bytes1 = bytes1; in BtreeAllocatorTest()
690 EXPECT_GT(bytes1, original_bytes1); in BtreeAllocatorTest()
696 EXPECT_EQ(bytes1, original_bytes1); in BtreeAllocatorTest()
703 EXPECT_GT(bytes2, bytes1); in BtreeAllocatorTest()
711 int64_t original_bytes1 = bytes1; in BtreeAllocatorTest()
713 EXPECT_GT(bytes1, original_bytes1); in BtreeAllocatorTest()
718 EXPECT_EQ(bytes1, original_bytes1); in BtreeAllocatorTest()
725 EXPECT_GT(bytes2, bytes1); in BtreeAllocatorTest()
[all …]
/external/libtextclassifier/abseil-cpp/absl/container/
Dbtree_test.cc673 int64_t bytes1 = 0, bytes2 = 0; in BtreeAllocatorTest() local
674 PropagatingCountingAlloc<T> allocator1(&bytes1); in BtreeAllocatorTest()
688 int64_t original_bytes1 = bytes1; in BtreeAllocatorTest()
690 EXPECT_GT(bytes1, original_bytes1); in BtreeAllocatorTest()
696 EXPECT_EQ(bytes1, original_bytes1); in BtreeAllocatorTest()
703 EXPECT_GT(bytes2, bytes1); in BtreeAllocatorTest()
711 int64_t original_bytes1 = bytes1; in BtreeAllocatorTest()
713 EXPECT_GT(bytes1, original_bytes1); in BtreeAllocatorTest()
718 EXPECT_EQ(bytes1, original_bytes1); in BtreeAllocatorTest()
725 EXPECT_GT(bytes2, bytes1); in BtreeAllocatorTest()
[all …]
/external/angle/third_party/abseil-cpp/absl/container/
Dbtree_test.cc674 int64_t bytes1 = 0, bytes2 = 0; in BtreeAllocatorTest() local
675 PropagatingCountingAlloc<T> allocator1(&bytes1); in BtreeAllocatorTest()
689 int64_t original_bytes1 = bytes1; in BtreeAllocatorTest()
691 EXPECT_GT(bytes1, original_bytes1); in BtreeAllocatorTest()
697 EXPECT_EQ(bytes1, original_bytes1); in BtreeAllocatorTest()
704 EXPECT_GT(bytes2, bytes1); in BtreeAllocatorTest()
712 int64_t original_bytes1 = bytes1; in BtreeAllocatorTest()
714 EXPECT_GT(bytes1, original_bytes1); in BtreeAllocatorTest()
719 EXPECT_EQ(bytes1, original_bytes1); in BtreeAllocatorTest()
726 EXPECT_GT(bytes2, bytes1); in BtreeAllocatorTest()
[all …]
/external/openscreen/third_party/abseil/src/absl/container/
Dbtree_test.cc674 int64_t bytes1 = 0, bytes2 = 0; in BtreeAllocatorTest() local
675 PropagatingCountingAlloc<T> allocator1(&bytes1); in BtreeAllocatorTest()
689 int64_t original_bytes1 = bytes1; in BtreeAllocatorTest()
691 EXPECT_GT(bytes1, original_bytes1); in BtreeAllocatorTest()
697 EXPECT_EQ(bytes1, original_bytes1); in BtreeAllocatorTest()
704 EXPECT_GT(bytes2, bytes1); in BtreeAllocatorTest()
712 int64_t original_bytes1 = bytes1; in BtreeAllocatorTest()
714 EXPECT_GT(bytes1, original_bytes1); in BtreeAllocatorTest()
719 EXPECT_EQ(bytes1, original_bytes1); in BtreeAllocatorTest()
726 EXPECT_GT(bytes2, bytes1); in BtreeAllocatorTest()
[all …]
/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/rust/crates/regex-automata/data/tests/
Dno-unicode.toml77 name = "no-unicode-null-bytes1"
/external/llvm-project/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.c616 char bytes1[4096]; in compareFiles() local
629 res1 = read(fd1, bytes1, 4096); in compareFiles()
632 res2 = write(fd2, bytes1, res1); in compareFiles()
650 res1 = read(fd1, bytes1, 4096); in compareFiles()
659 if (memcmp(bytes1, bytes2, res1) != 0) { in compareFiles()
/external/python/cpython3/Lib/
Dpickletools.py489 bytes1 = ArgumentDescriptor( variable
1330 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.cc2255 string bytes1, bytes2; in TEST_F() local
2260 proto.SerializeToString(&bytes1); in TEST_F()
2268 const std::vector<string> list = {bytes1, bytes2}; in TEST_F()
/external/icu/icu4c/source/test/cintltst/
Dudatatst.c1226 MappedData bytes1; member
/external/protobuf/javanano/src/test/java/com/google/protobuf/nano/
DNanoTest.java3946 byte[] bytes1 = {3, 4}; in testNullRepeatedFieldElements()
3955 message.repeatedBytes = new byte[][] {bytes1, null, bytes2}; in testNullRepeatedFieldElements()
3965 assertTrue(Arrays.equals(bytes1, deserialized.repeatedBytes[0])); in testNullRepeatedFieldElements()