Home
last modified time | relevance | path

Searched refs:HF (Results 1 – 25 of 34) sorted by relevance

12

/third_party/mesa3d/src/intel/compiler/
Dtest_eu_validate.cpp1339 INST_C(HF, B, 1, 0, false), in TEST_P()
1340 INST_C(HF, W, 1, 0, false), in TEST_P()
1341 INST_C(HF, HF, 1, 0, true), in TEST_P()
1342 INST_C(HF, HF, 1, 2, true), in TEST_P()
1343 INST_C(HF, D, 1, 0, false), in TEST_P()
1344 INST_S(HF, F, 1, 0, false, true), in TEST_P()
1345 INST_C(HF, Q, 1, 0, false), in TEST_P()
1346 INST_C(HF, B, 2, 0, true), in TEST_P()
1347 INST_C(HF, B, 2, 2, false), in TEST_P()
1348 INST_C(HF, W, 2, 0, true), in TEST_P()
[all …]
/third_party/glslang/SPIRV/
Dhex_float.h669 typedef HexFloat<T, Traits> HF;
670 typedef typename HF::uint_type uint_type;
671 typedef typename HF::int_type int_type;
673 static_assert(HF::num_used_bits != 0,
675 static_assert(HF::num_exponent_bits != 0,
677 static_assert(HF::num_fraction_bits != 0,
681 const char* const sign = (bits & HF::sign_mask) ? "-" : "";
683 (bits & HF::exponent_mask) >> HF::num_fraction_bits);
685 uint_type fraction = static_cast<uint_type>((bits & HF::fraction_encode_mask)
686 << HF::num_overflow_bits);
[all …]
/third_party/flutter/skia/third_party/externals/spirv-tools/source/util/
Dhex_float.h667 using HF = HexFloat<T, Traits>;
668 using uint_type = typename HF::uint_type;
669 using int_type = typename HF::int_type;
671 static_assert(HF::num_used_bits != 0,
673 static_assert(HF::num_exponent_bits != 0,
675 static_assert(HF::num_fraction_bits != 0,
679 const char* const sign = (bits & HF::sign_mask) ? "-" : "";
681 (bits & HF::exponent_mask) >> HF::num_fraction_bits);
683 uint_type fraction = static_cast<uint_type>((bits & HF::fraction_encode_mask)
684 << HF::num_overflow_bits);
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/util/
Dhex_float.h739 using HF = HexFloat<T, Traits>;
740 using uint_type = typename HF::uint_type;
741 using int_type = typename HF::int_type;
743 static_assert(HF::num_used_bits != 0,
745 static_assert(HF::num_exponent_bits != 0,
747 static_assert(HF::num_fraction_bits != 0,
751 const char* const sign = (bits & HF::sign_mask) ? "-" : "";
753 (bits & HF::exponent_mask) >> HF::num_fraction_bits);
755 uint_type fraction = static_cast<uint_type>((bits & HF::fraction_encode_mask)
756 << HF::num_overflow_bits);
[all …]
/third_party/skia/third_party/externals/spirv-tools/source/util/
Dhex_float.h739 using HF = HexFloat<T, Traits>;
740 using uint_type = typename HF::uint_type;
741 using int_type = typename HF::int_type;
743 static_assert(HF::num_used_bits != 0,
745 static_assert(HF::num_exponent_bits != 0,
747 static_assert(HF::num_fraction_bits != 0,
751 const char* const sign = (bits & HF::sign_mask) ? "-" : "";
753 (bits & HF::exponent_mask) >> HF::num_fraction_bits);
755 uint_type fraction = static_cast<uint_type>((bits & HF::fraction_encode_mask)
756 << HF::num_overflow_bits);
[all …]
/third_party/spirv-tools/source/util/
Dhex_float.h740 using HF = HexFloat<T, Traits>;
741 using uint_type = typename HF::uint_type;
742 using int_type = typename HF::int_type;
744 static_assert(HF::num_used_bits != 0,
746 static_assert(HF::num_exponent_bits != 0,
748 static_assert(HF::num_fraction_bits != 0,
752 const char* const sign = (bits & HF::sign_mask) ? "-" : "";
754 (bits & HF::exponent_mask) >> HF::num_fraction_bits);
756 uint_type fraction = static_cast<uint_type>((bits & HF::fraction_encode_mask)
757 << HF::num_overflow_bits);
[all …]
/third_party/glslang/gtests/
DHexFloat.cpp689 using HF = spvutils::HexFloat<spvutils::FloatProxy<float>>; in TEST() typedef
700 EXPECT_EQ(bits_set({}), HF(0.f).getRoundedNormalizedSignificand<HF>( in TEST()
705 HF(float_fractions({0, 1})) in TEST()
706 .getRoundedNormalizedSignificand<HF>(round, &carry_bit)); in TEST()
710 HF(float_fractions({0, 2, 4})) in TEST()
711 .getRoundedNormalizedSignificand<HF>(round, &carry_bit)); in TEST()
716 HF(static_cast<float>(-ldexp(float_fractions({0, 1, 2, 5}), -128))) in TEST()
717 .getRoundedNormalizedSignificand<HF>(round, &carry_bit)); in TEST()
722 HF(static_cast<float>(float_fractions({0, 1, 2, 5, 23}))) in TEST()
723 .getRoundedNormalizedSignificand<HF>(round, &carry_bit)); in TEST()
[all …]
/third_party/flutter/skia/third_party/externals/spirv-tools/test/
Dhex_float_test.cpp691 using HF = spvutils::HexFloat<spvutils::FloatProxy<float>>; in TEST() typedef
702 EXPECT_EQ(bits_set({}), HF(0.f).getRoundedNormalizedSignificand<HF>( in TEST()
707 HF(float_fractions({0, 1})) in TEST()
708 .getRoundedNormalizedSignificand<HF>(round, &carry_bit)); in TEST()
712 HF(float_fractions({0, 2, 4})) in TEST()
713 .getRoundedNormalizedSignificand<HF>(round, &carry_bit)); in TEST()
718 HF(static_cast<float>(-ldexp(float_fractions({0, 1, 2, 5}), -128))) in TEST()
719 .getRoundedNormalizedSignificand<HF>(round, &carry_bit)); in TEST()
724 HF(static_cast<float>(float_fractions({0, 1, 2, 5, 23}))) in TEST()
725 .getRoundedNormalizedSignificand<HF>(round, &carry_bit)); in TEST()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/
Dhex_float_test.cpp736 using HF = HexFloat<FloatProxy<float>>; in TEST() typedef
747 HF(0.f).getRoundedNormalizedSignificand<HF>(round, &carry_bit)); in TEST()
751 HF(float_fractions({0, 1})) in TEST()
752 .getRoundedNormalizedSignificand<HF>(round, &carry_bit)); in TEST()
756 HF(float_fractions({0, 2, 4})) in TEST()
757 .getRoundedNormalizedSignificand<HF>(round, &carry_bit)); in TEST()
762 HF(static_cast<float>(-ldexp(float_fractions({0, 1, 2, 5}), -128))) in TEST()
763 .getRoundedNormalizedSignificand<HF>(round, &carry_bit)); in TEST()
767 HF(static_cast<float>(float_fractions({0, 1, 2, 5, 23}))) in TEST()
768 .getRoundedNormalizedSignificand<HF>(round, &carry_bit)); in TEST()
[all …]
/third_party/spirv-tools/test/
Dhex_float_test.cpp736 using HF = HexFloat<FloatProxy<float>>; in TEST() typedef
747 HF(0.f).getRoundedNormalizedSignificand<HF>(round, &carry_bit)); in TEST()
751 HF(float_fractions({0, 1})) in TEST()
752 .getRoundedNormalizedSignificand<HF>(round, &carry_bit)); in TEST()
756 HF(float_fractions({0, 2, 4})) in TEST()
757 .getRoundedNormalizedSignificand<HF>(round, &carry_bit)); in TEST()
762 HF(static_cast<float>(-ldexp(float_fractions({0, 1, 2, 5}), -128))) in TEST()
763 .getRoundedNormalizedSignificand<HF>(round, &carry_bit)); in TEST()
767 HF(static_cast<float>(float_fractions({0, 1, 2, 5, 23}))) in TEST()
768 .getRoundedNormalizedSignificand<HF>(round, &carry_bit)); in TEST()
[all …]
/third_party/skia/third_party/externals/spirv-tools/test/
Dhex_float_test.cpp736 using HF = HexFloat<FloatProxy<float>>; in TEST() typedef
747 HF(0.f).getRoundedNormalizedSignificand<HF>(round, &carry_bit)); in TEST()
751 HF(float_fractions({0, 1})) in TEST()
752 .getRoundedNormalizedSignificand<HF>(round, &carry_bit)); in TEST()
756 HF(float_fractions({0, 2, 4})) in TEST()
757 .getRoundedNormalizedSignificand<HF>(round, &carry_bit)); in TEST()
762 HF(static_cast<float>(-ldexp(float_fractions({0, 1, 2, 5}), -128))) in TEST()
763 .getRoundedNormalizedSignificand<HF>(round, &carry_bit)); in TEST()
767 HF(static_cast<float>(float_fractions({0, 1, 2, 5, 23}))) in TEST()
768 .getRoundedNormalizedSignificand<HF>(round, &carry_bit)); in TEST()
[all …]
/third_party/iowow/src/
DCMakeLists.txt114 foreach(HF IN ITEMS stdlib stddef stdint stdbool stdatomic unistd dirent)
115 string(TOUPPER "${HF}" UHF)
116 check_include_file(${HF}.h "IW_HAVE_${UHF}")
118 message(FATAL_ERROR "Include file '${HF}.h' not FOUND")
120 endforeach(HF)
/third_party/mesa3d/src/intel/tools/tests/gen8/
Dmov.asm74 mov(8) g5<1>F g2<0,1,0>HF { align1 1Q };
75 mov(16) g6<1>F g2<0,1,0>HF { align1 1H };
118 mov(8) g7<2>HF g2.1<0,1,0>F { align1 1Q };
132 mov(16) g10<2>HF g4<8,8,1>F { align1 1H };
/third_party/mesa3d/src/intel/tools/tests/gen9/
Dmov.asm69 mov(8) g5<1>F g2<0,1,0>HF { align1 1Q };
70 mov(16) g6<1>F g2<0,1,0>HF { align1 1H };
110 mov(8) g7<2>HF g2.1<0,1,0>F { align1 1Q };
126 mov(16) g10<2>HF g4<8,8,1>F { align1 1H };
/third_party/ffmpeg/libavcodec/
Daptx.c332 [HF] = { quantize_intervals_HF,
358 [HF] = { hd_quantize_intervals_HF,
Daptx.h43 HF, // High Frequency (16.5-22kHz) enumerator
/third_party/glslang/Test/
Dspv.16bitstorage_Error.frag88 b2.o = 1.0HF;
Dspv.float16.frag14 const f16vec2 f16cv = f16vec2(-0.25HF, 0.03HF);
/third_party/skia/third_party/externals/opengl-registry/extensions/AMD/
DAMD_gpu_shader_half_float.txt276 float16_t e, f = 3.0HF; // half-precision floating-point
286 f F lf LF hf HF
291 suffix "hf" or "HF" is present, the literal has type float16_t. Otherwise, the
981 RESOLVED: We will use "HF" and "hf" to identify half-precision
/third_party/openGLES/extensions/AMD/
DAMD_gpu_shader_half_float.txt276 float16_t e, f = 3.0HF; // half-precision floating-point
286 f F lf LF hf HF
291 suffix "hf" or "HF" is present, the literal has type float16_t. Otherwise, the
981 RESOLVED: We will use "HF" and "hf" to identify half-precision
/third_party/mesa3d/src/intel/tools/
Di965_lex.l303 :?HF { return TYPE_HF; }
/third_party/openssl/doc/man3/
DSSL_alert_type_string.pod93 =item "HF"/"handshake failure"
/third_party/flutter/skia/third_party/externals/libjpeg-turbo/testimages/
Dtestorig.ppm4HF�OL�[V�g`�ui��u������������������~�|�yt�oj~ccz^]qXWfOO\HIRAAH8>@399/85.7/,3+)2()2()3)*4*+0*,/+*…
/third_party/skia/third_party/externals/libjpeg-turbo/testimages/
Dtestorig.ppm4HF�OL�[V�g`�ui��u������������������~�|�yt�oj~ccz^]qXWfOO\HIRAAH8>@399/85.7/,3+)2()2()3)*4*+0*,/+*…
/third_party/libjpeg-turbo/testimages/
Dtestorig.ppm4HF�OL�[V�g`�ui��u������������������~�|�yt�oj~ccz^]qXWfOO\HIRAAH8>@399/85.7/,3+)2()2()3)*4*+0*,/+*…

12