Home
last modified time | relevance | path

Searched refs:bytes2 (Results 1 - 11 of 11) sorted by relevance

/third_party/node/deps/v8/third_party/zlib/
H A Dadler32_simd.c104 const __m128i bytes2 = _mm_loadu_si128((__m128i*)(buf + 16)); in adler32_simd_() local
119 v_s1 = _mm_add_epi32(v_s1, _mm_sad_epu8(bytes2, zero)); in adler32_simd_()
120 const __m128i mad2 = _mm_maddubs_epi16(bytes2, tap2); in adler32_simd_()
260 const uint8x16_t bytes2 = vld1q_u8((uint8_t*)(buf + 16)); in adler32_simd_() local
270 v_s1 = vpadalq_u16(v_s1, vpadalq_u8(vpaddlq_u8(bytes1), bytes2)); in adler32_simd_()
277 v_column_sum_3 = vaddw_u8(v_column_sum_3, vget_low_u8 (bytes2)); in adler32_simd_()
278 v_column_sum_4 = vaddw_u8(v_column_sum_4, vget_high_u8(bytes2)); in adler32_simd_()
/third_party/node/deps/zlib/
H A Dadler32_simd.c104 const __m128i bytes2 = _mm_loadu_si128((__m128i*)(buf + 16)); in adler32_simd_() local
119 v_s1 = _mm_add_epi32(v_s1, _mm_sad_epu8(bytes2, zero)); in adler32_simd_()
120 const __m128i mad2 = _mm_maddubs_epi16(bytes2, tap2); in adler32_simd_()
260 const uint8x16_t bytes2 = vld1q_u8((uint8_t*)(buf + 16)); in adler32_simd_() local
270 v_s1 = vpadalq_u16(v_s1, vpadalq_u8(vpaddlq_u8(bytes1), bytes2)); in adler32_simd_()
277 v_column_sum_3 = vaddw_u8(v_column_sum_3, vget_low_u8 (bytes2)); in adler32_simd_()
278 v_column_sum_4 = vaddw_u8(v_column_sum_4, vget_high_u8(bytes2)); in adler32_simd_()
/third_party/skia/third_party/externals/zlib/
H A Dadler32_simd.c104 const __m128i bytes2 = _mm_loadu_si128((__m128i*)(buf + 16)); in adler32_simd_() local
119 v_s1 = _mm_add_epi32(v_s1, _mm_sad_epu8(bytes2, zero)); in adler32_simd_()
120 const __m128i mad2 = _mm_maddubs_epi16(bytes2, tap2); in adler32_simd_()
260 const uint8x16_t bytes2 = vld1q_u8((uint8_t*)(buf + 16)); in adler32_simd_() local
270 v_s1 = vpadalq_u16(v_s1, vpadalq_u8(vpaddlq_u8(bytes1), bytes2)); in adler32_simd_()
277 v_column_sum_3 = vaddw_u8(v_column_sum_3, vget_low_u8 (bytes2)); in adler32_simd_()
278 v_column_sum_4 = vaddw_u8(v_column_sum_4, vget_high_u8(bytes2)); in adler32_simd_()
/third_party/node/test/fixtures/wpt/wasm/jsapi/module/
H A DcustomSections.any.js82 const bytes2 = [74, 83, 65, 80, 73];
86 builder.addCustomSection("name", bytes2);
93 bytes2,
/third_party/openssl/test/
H A Dasn1_encode_test.c93 unsigned char *bytes2; member
610 if (custom_data->bytes2[i - 1] != '\0') in make_custom_der()
659 memcpy(p, custom_data->bytes2, custom_data->nbytes2); in make_custom_der()
/third_party/protobuf/js/experimental/runtime/kernel/
H A Dkernel_repeated_test.js7045 const bytes2 = createArrayBuffer(0x08, 0x00);
7047 const msg2 = new TestMessage(Kernel.fromArrayBuffer(bytes2));
7152 const bytes2 = createArrayBuffer(0x08, 0x00);
7153 const msg2 = new TestMessage(Kernel.fromArrayBuffer(bytes2));
7167 const bytes2 = createArrayBuffer(0x08, 0x00);
7168 const msg2 = new TestMessage(Kernel.fromArrayBuffer(bytes2));
7222 const bytes2 = createArrayBuffer(0x08, 0x00);
7223 const msg2 = new TestMessage(Kernel.fromArrayBuffer(bytes2));
7238 const bytes2 = createArrayBuffer(0x08, 0x00);
7239 const msg2 = new TestMessage(Kernel.fromArrayBuffer(bytes2));
[all...]
/third_party/protobuf/js/
H A Dmessage.js1678 var bytes2 = /** @type {!Uint8Array} */(field2);
1679 if (bytes1.length != bytes2.length) return false;
1681 if (bytes1[i] != bytes2[i]) return false;
/third_party/skia/third_party/externals/abseil-cpp/absl/container/
H A Dbtree_test.cc674 int64_t bytes1 = 0, bytes2 = 0; in BtreeAllocatorTest()
676 PropagatingCountingAlloc<T> allocator2(&bytes2); in BtreeAllocatorTest()
704 EXPECT_GT(bytes2, bytes1); in BtreeAllocatorTest()
726 EXPECT_GT(bytes2, bytes1); in BtreeAllocatorTest()
749 EXPECT_GT(bytes2, bytes1); in BtreeAllocatorTest()
2399 int64_t bytes1 = 0, bytes2 = 0; in TEST() local
2401 PropagatingCountingAlloc<MovableOnlyInstance> allocator2(&bytes2); in TEST()
/third_party/icu/icu4c/source/test/cintltst/
H A Dudatatst.c1224 UDataInfo bytes2; member
/third_party/mesa3d/src/panfrost/bifrost/
H A Dcompiler.h526 bool bytes2; /* RROT_DOUBLE, FRSHIFT_DOUBLE */
/third_party/python/Objects/
H A Dunicodeobject.c5503 char *bytes2; in _Py_EncodeUTF8Ex() local
5505 bytes2 = PyMem_RawRealloc(bytes, final_size); in _Py_EncodeUTF8Ex()
5508 bytes2 = PyMem_Realloc(bytes, final_size); in _Py_EncodeUTF8Ex()
5510 if (bytes2 == NULL) { in _Py_EncodeUTF8Ex()
5522 *str = bytes2; in _Py_EncodeUTF8Ex()

Completed in 39 milliseconds