Home
last modified time | relevance | path

Searched refs:h5 (Results 1 - 20 of 20) sorted by relevance

/third_party/vixl/test/aarch64/
H A Dtest-disasm-fp-aarch64.cc128 COMPARE(fcvt(d4, h5), "fcvt d4, h5"); in TEST()
147 COMPARE(fnmul(h4, h5, h6), "fnmul h4, h5, h6"); in TEST()
159 COMPARE(fmaxnm(h4, h5, h6), "fmaxnm h4, h5, h6"); in TEST()
172 COMPARE(fmadd(h4, h5, h6, h10), "fmadd h4, h5, h6, h10"); in TEST()
175 COMPARE(fmsub(h4, h5, h6, h10), "fmsub h4, h5, h in TEST()
[all...]
H A Dtest-assembler-fp-aarch64.cc505 __ Fadd(h5, h15, h16); in TEST()
518 ASSERT_EQUAL_FP16(kFP16DefaultNaN, h5); in TEST()
596 __ Fsub(h5, h15, h15); in TEST()
608 ASSERT_EQUAL_FP16(kFP16DefaultNaN, h5); in TEST()
688 __ Fmul(h5, h15, h19); in TEST()
700 ASSERT_EQUAL_FP16(kFP16DefaultNaN, h5); in TEST()
723 __ Fnmul(h5, h15, h19); in TEST()
735 ASSERT_EQUAL_FP16(RawbitsToFloat16(0xfe00), h5); in TEST()
1403 __ Fdiv(h5, h15, h16); in TEST()
1415 ASSERT_EQUAL_FP16(kFP16DefaultNaN, h5); in TEST()
[all...]
H A Dtest-assembler-neon-aarch64.cc206 __ Ldr(h5, MemOperand(x17, x18, LSL, 1)); in TEST()
4908 __ Fcmeq(h5, h1, h0); in TEST()
4918 ASSERT_EQUAL_FP16(RawbitsToFloat16(0x0000), h5); in TEST()
4974 __ Fcmge(h5, h1, h0); in TEST()
4984 ASSERT_EQUAL_FP16(RawbitsToFloat16(0x0000), h5); in TEST()
5040 __ Fcmgt(h5, h1, h0); in TEST()
5050 ASSERT_EQUAL_FP16(RawbitsToFloat16(0x0000), h5); in TEST()
5106 __ Facge(h5, h1, h0); in TEST()
5116 ASSERT_EQUAL_FP16(RawbitsToFloat16(0x0000), h5); in TEST()
5172 __ Facgt(h5, h in TEST()
[all...]
H A Dtest-disasm-neon-aarch64.cc2230 COMPARE_MACRO(Fcmeq(v3.H(), v4.H(), v5.H()), "fcmeq h3, h4, h5"); in TEST()
3962 COMPARE_MACRO(A(h5, h17), B " h5, h17")
3967 COMPARE_MACRO(A(h5, h17, 0), B " h5, h17, #0.0")
4006 COMPARE_MACRO(Frecpx(h5, h17), "frecpx h5, h17"); in TEST()
H A Dtest-api-aarch64.cc549 VIXL_CHECK(!AreConsecutive(h4, h5, h6, h6)); in TEST()
H A Dtest-trace-aarch64.cc1570 __ sqdmulh(h16, h5, v11.H(), 0); in GenerateTestSequenceNEON()
1669 __ sqshlu(h5, h29, 15); in GenerateTestSequenceNEON()
H A Dtest-assembler-sve-aarch64.cc11332 __ Eorv(h5, p0, z5.VnH()); // destructive
11419 __ Uaddv(h5, p0, z5.VnH()); // destructive
11489 __ Uminv(h5, p0, z5.VnH()); // destructive
11561 __ Umaxv(h5, p0, z5.VnH()); // destructive
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H A DHashing.h261 uint64_t h0, h1, h2, h3, h4, h5, h6; member
270 state.h6 = hash_16_bytes(state.h4, state.h5); in create()
295 h2 = rotate(h2 + h5, 33) * k1; in mix()
297 h4 = h0 + h5; in mix()
299 h5 = h2 + h6; in mix()
301 mix_32_bytes(s + 32, h5, h6); in mix()
308 return hash_16_bytes(hash_16_bytes(h3, h5) + shift_mix(h1) * k1 + h2, in finalize()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DHashing.h260 uint64_t h0 = 0, h1 = 0, h2 = 0, h3 = 0, h4 = 0, h5 = 0, h6 = 0; member
269 state.h6 = hash_16_bytes(state.h4, state.h5); in create()
294 h2 = rotate(h2 + h5, 33) * k1; in mix()
296 h4 = h0 + h5; in mix()
298 h5 = h2 + h6; in mix()
300 mix_32_bytes(s + 32, h5, h6); in mix()
307 return hash_16_bytes(hash_16_bytes(h3, h5) + shift_mix(h1) * k1 + h2, in finalize()
/third_party/node/deps/openssl/openssl/crypto/ec/
H A Dcurve25519.c808 int64_t h5 = load_4(s + 16); in fe_frombytes() local
827 carry5 = h5 + (1 << 24); h6 += carry5 >> 25; h5 -= carry5 & kTop39Bits; in fe_frombytes()
832 carry4 = h4 + (1 << 25); h5 += carry4 >> 26; h4 -= carry4 & kTop38Bits; in fe_frombytes()
841 h[5] = (int32_t)h5; in fe_frombytes()
879 int32_t h5 = h[5]; in fe_tobytes() local
892 q = (h5 + q) >> 25; in fe_tobytes()
906 h5 += h4 >> 26; h4 &= kBottom26Bits; in fe_tobytes()
907 h6 += h5 >> 25; h5 in fe_tobytes()
1186 int64_t h5 = f0g5 + f1g4 + f2g3 + f3g2 + f4g1 + f5g0 + f6g9_19 + f7g8_19 + f8g7_19 + f9g6_19; fe_mul() local
1360 int64_t h5 = f0f5_2 + f1f4_2 + f2f3_2 + f6f9_38 + f7f8_38; fe_sq() local
1669 int64_t h5 = f0f5_2 + f1f4_2 + f2f3_2 + f6f9_38 + f7f8_38; fe_sq2() local
4337 int64_t h5 = f5 * (int64_t) 121666; fe_mul121666() local
[all...]
/third_party/openssl/crypto/ec/
H A Dcurve25519.c808 int64_t h5 = load_4(s + 16); in fe_frombytes() local
827 carry5 = h5 + (1 << 24); h6 += carry5 >> 25; h5 -= carry5 & kTop39Bits; in fe_frombytes()
832 carry4 = h4 + (1 << 25); h5 += carry4 >> 26; h4 -= carry4 & kTop38Bits; in fe_frombytes()
841 h[5] = (int32_t)h5; in fe_frombytes()
879 int32_t h5 = h[5]; in fe_tobytes() local
892 q = (h5 + q) >> 25; in fe_tobytes()
906 h5 += h4 >> 26; h4 &= kBottom26Bits; in fe_tobytes()
907 h6 += h5 >> 25; h5 in fe_tobytes()
1186 int64_t h5 = f0g5 + f1g4 + f2g3 + f3g2 + f4g1 + f5g0 + f6g9_19 + f7g8_19 + f8g7_19 + f9g6_19; fe_mul() local
1360 int64_t h5 = f0f5_2 + f1f4_2 + f2f3_2 + f6f9_38 + f7f8_38; fe_sq() local
1669 int64_t h5 = f0f5_2 + f1f4_2 + f2f3_2 + f6f9_38 + f7f8_38; fe_sq2() local
4337 int64_t h5 = f5 * (int64_t) 121666; fe_mul121666() local
[all...]
/third_party/openssl/ohos_lite/crypto/ec/
H A Dcurve25519.c798 int64_t h5 = load_4(s + 16); in fe_frombytes() local
817 carry5 = h5 + (1 << 24); h6 += carry5 >> 25; h5 -= carry5 & kTop39Bits; in fe_frombytes()
822 carry4 = h4 + (1 << 25); h5 += carry4 >> 26; h4 -= carry4 & kTop38Bits; in fe_frombytes()
831 h[5] = (int32_t)h5; in fe_frombytes()
869 int32_t h5 = h[5]; in fe_tobytes() local
882 q = (h5 + q) >> 25; in fe_tobytes()
896 h5 += h4 >> 26; h4 &= kBottom26Bits; in fe_tobytes()
897 h6 += h5 >> 25; h5 in fe_tobytes()
1176 int64_t h5 = f0g5 + f1g4 + f2g3 + f3g2 + f4g1 + f5g0 + f6g9_19 + f7g8_19 + f8g7_19 + f9g6_19; fe_mul() local
1350 int64_t h5 = f0f5_2 + f1f4_2 + f2f3_2 + f6f9_38 + f7f8_38; fe_sq() local
1659 int64_t h5 = f0f5_2 + f1f4_2 + f2f3_2 + f6f9_38 + f7f8_38; fe_sq2() local
4327 int64_t h5 = f5 * (int64_t) 121666; fe_mul121666() local
[all...]
/third_party/typescript/tests/baselines/reference/
H A DtemplateStringBinaryOperationsInvalid.js45 var h5 = `2${ 3 * 4 }5` - 6;
151 var h5 = "2".concat(3 * 4, "5") - 6; variable
H A DtemplateLiteralTypes1.js196 type U5 = {a5:A} | {b5:A} | {c5:A} | {d5:A} | {e5:A} | {f5:A} | {g5:A} | {h5:A} | {i5:A} | {j5:A};
/third_party/musl/src/math/
H A Dlgammal.c142 h5 = 6.442485441570592541741092969581997002349E1L, variable
295 p2 = h0 + y * (h1 + y * (h2 + y * (h3 + y * (h4 + y * (h5 + y))))); in __lgammal_r()
/third_party/musl/porting/liteos_a/kernel/src/math/
H A Dlgammal.c142 h5 = 6.442485441570592541741092969581997002349E1L, variable
295 p2 = h0 + y * (h1 + y * (h2 + y * (h3 + y * (h4 + y * (h5 + y))))); in __lgammal_r()
/third_party/python/Lib/test/
H A Dtest_context.py520 h5 = h4.set(k3, 'aa')
527 self.assertEqual(h5.get(k1), 'a')
528 self.assertEqual(h5.get(k2), 'cc')
529 self.assertEqual(h5.get(k2), 'cc')
530 self.assertEqual(h5.get(k3), 'aa')
536 self.assertEqual(len(h5), 3)
/third_party/python/Objects/
H A Dcodeobject.c1775 Py_hash_t h5 = PyObject_Hash(co->co_exceptiontable); in code_hash() local
1776 if (h5 == -1) { in code_hash()
1779 h = h0 ^ h1 ^ h2 ^ h3 ^ h4 ^ h5 ^ in code_hash()
/third_party/ffmpeg/libavcodec/mips/
H A Dvp9_idct_msa.c1307 v8i16 h0, h1, h2, h3, h4, h5, h6, h7, h8, h9, h10, h11; in vp9_iadst16_1d_columns_addblk_msa() local
1375 VP9_MADD_BF(g7, g5, g15, g13, k0, k1, k2, k0, h4, h5, h6, h7); in vp9_iadst16_1d_columns_addblk_msa()
1404 VP9_MADD_BF(h1, h3, h5, h7, k0, k1, k2, k0, out12, out14, out13, out15); in vp9_iadst16_1d_columns_addblk_msa()
/third_party/rust/crates/bindgen/bindgen-tests/tests/
H A Dstylo.hpp[all...]

Completed in 103 milliseconds