/third_party/skia/resources/sksl/intrinsics/ |
D | Asin.sksl | 6 return (asin(inputVal.x) == expected.x && 7 asin(inputVal.xy) == expected.xy && 8 asin(inputVal.xyz) == expected.xyz && 9 asin(inputVal.xyzw) == expected.xyzw && 10 asin(constVal.x) == expected.x && 11 asin(constVal.xy) == expected.xy && 12 asin(constVal.xyz) == expected.xyz && 13 asin(constVal.xyzw) == expected.xyzw) ? colorGreen : colorRed;
|
/third_party/python/Lib/test/ |
D | cmath_testcases.txt | 408 -- asin: Inverse sine -- 412 asin0000 asin 0.0 0.0 -> 0.0 0.0 413 asin0001 asin 0.0 -0.0 -> 0.0 -0.0 414 asin0002 asin -0.0 0.0 -> -0.0 0.0 415 asin0003 asin -0.0 -0.0 -> -0.0 -0.0 418 asin0010 asin 1.0 0.0 -> 1.5707963267948966 0.0 419 asin0011 asin 1.0 -0.0 -> 1.5707963267948966 -0.0 420 asin0012 asin -1.0 0.0 -> -1.5707963267948966 0.0 421 asin0013 asin -1.0 -0.0 -> -1.5707963267948966 -0.0 424 asin0020 asin -9.8813129168249309e-324 0.0 -> -9.8813129168249309e-324 0.0 [all …]
|
/third_party/skia/tests/sksl/intrinsics/ |
D | Asin.glsl | 8 …return ((((((asin(inputVal.x) == expected.x && asin(inputVal.xy) == expected.xy) && asin(inputVal.…
|
D | Asin.metal | 18 …asin(_uniforms.inputVal.x) == _uniforms.expected.x && all(asin(_uniforms.inputVal.xy) == _uniforms…
|
/third_party/jerryscript/tools/unit-tests/ |
D | gen-test-libm.c | 85 GEN_DBL_TEST (asin (0.0)); in main() 86 GEN_DBL_TEST (asin (-0.0)); in main() 87 GEN_DBL_TEST (asin (1.0)); in main() 88 GEN_DBL_TEST (asin (-1.0)); in main() 89 GEN_DBL_TEST (asin (0.5)); in main() 90 GEN_DBL_TEST (asin (-0.5)); in main() 91 GEN_DBL_TEST (asin (0.98)); in main() 92 GEN_DBL_TEST (asin (-0.98)); in main() 93 GEN_DBL_TEST (asin (INFINITY)); in main() 94 GEN_DBL_TEST (asin (-INFINITY)); in main() [all …]
|
/third_party/jerryscript/tests/unit-libm/ |
D | test-libm.inc.h | 47 check_double ("asin (0.0)", asin (0.0), 0.00000000000000000000E+00); 48 check_double ("asin (-0.0)", asin (-0.0), -0.00000000000000000000E+00); 49 check_double ("asin (1.0)", asin (1.0), 1.57079632679489655800E+00); 50 check_double ("asin (-1.0)", asin (-1.0), -1.57079632679489655800E+00); 51 check_double ("asin (0.5)", asin (0.5), 5.23598775598298926681E-01); 52 check_double ("asin (-0.5)", asin (-0.5), -5.23598775598298926681E-01); 53 check_double ("asin (0.98)", asin (0.98), 1.37046148447177684737E+00); 54 check_double ("asin (-0.98)", asin (-0.98), -1.37046148447177684737E+00); 55 check_double ("asin (INFINITY)", asin (INFINITY), NAN); 56 check_double ("asin (-INFINITY)", asin (-INFINITY), NAN); [all …]
|
/third_party/boost/libs/units/test/ |
D | test_trig.cpp | 57 BOOST_CHECK_EQUAL(boost::units::asin(0.2 * si_dimensionless), std::asin(0.2) * radians); in BOOST_AUTO_TEST_CASE() 58 … BOOST_CHECK_CLOSE_FRACTION(boost::units::asin(0.5 * degree_dimensionless).value(), 30.0, 0.0001); in BOOST_AUTO_TEST_CASE() 59 … BOOST_CHECK_EQUAL(boost::units::asin(0.2 * heterogeneous_dimensionless).value(), std::asin(0.2)); in BOOST_AUTO_TEST_CASE()
|
/third_party/boost/libs/math/test/compile_test/ |
D | compl_asin_incl_test.cpp | 21 check_result<std::complex<float> >(boost::math::asin(std::complex<float>())); in compile_and_link_test() 22 check_result<std::complex<double> >(boost::math::asin(std::complex<double>())); in compile_and_link_test() 24 check_result<std::complex<long double> >(boost::math::asin(std::complex<long double>())); in compile_and_link_test()
|
/third_party/musl/src/math/i386/ |
D | asin.s | 1 .global asin symbol 2 .type asin,@function 3 asin: label
|
/third_party/skia/third_party/externals/tint/test/intrinsics/gen/asin/ |
D | 7b6a44.wgsl.expected.glsl | 5 vec2 res = asin(vec2(0.0f, 0.0f)); 35 vec2 res = asin(vec2(0.0f, 0.0f)); 55 vec2 res = asin(vec2(0.0f, 0.0f));
|
D | c0c272.wgsl.expected.glsl | 5 float res = asin(1.0f); 35 float res = asin(1.0f); 55 float res = asin(1.0f);
|
D | 8cd9c9.wgsl.expected.glsl | 5 vec3 res = asin(vec3(0.0f, 0.0f, 0.0f)); 35 vec3 res = asin(vec3(0.0f, 0.0f, 0.0f)); 55 vec3 res = asin(vec3(0.0f, 0.0f, 0.0f));
|
D | 064953.wgsl.expected.glsl | 5 vec4 res = asin(vec4(0.0f, 0.0f, 0.0f, 0.0f)); 35 vec4 res = asin(vec4(0.0f, 0.0f, 0.0f, 0.0f)); 55 vec4 res = asin(vec4(0.0f, 0.0f, 0.0f, 0.0f));
|
/third_party/boost/boost/qvm/ |
D | math.hpp | 19 template <class T> T asin( T ); 42 template <> BOOST_QVM_INLINE_TRIVIAL float asin<float>( float x ) { return ::asinf(x); } in asin() function 64 template <> BOOST_QVM_INLINE_TRIVIAL double asin<double>( double x ) { return ::asin(x); } in asin() function 86 …template <> BOOST_QVM_INLINE_TRIVIAL long double asin<long double>( long double x ) { return ::asi… in asin() function
|
/third_party/boost/boost/geometry/srs/projections/proj/ |
D | mbtfpp.hpp | 76 lp_lat = asin(CS_ * sin(lp_lat)); in fwd() 96 lp_lat = asin(lp_lat); in inv() 106 lp_lat = asin(lp_lat); in inv()
|
D | krovak.hpp | 120 … s = asin(cos(this->m_proj_parm.ad) * sin(u) + sin(this->m_proj_parm.ad) * cos(u) * cos(deltav)); in fwd() 121 d = asin(cos(u) * sin(deltav) / cos(s)); in fwd() 154 … u = asin(cos(this->m_proj_parm.ad) * sin(s) - sin(this->m_proj_parm.ad) * cos(s) * cos(d)); in inv() 155 deltav = asin(cos(s) * sin(d) / cos(u)); in inv() 216 u0 = asin(sin(par.phi0) / proj_parm.alpha); in setup_krovak()
|
D | gstmerc.hpp | 84 Ls1= log(pj_tsfn(-1.0*asin(sinLs1),0.0,0.0)); in fwd() 97 LC= log(pj_tsfn(-1.0*asin(sinC),0.0,0.0)); in inv() 115 proj_parm.phic= asin(sin(par.phi0)/proj_parm.n1); in setup_gstmerc()
|
D | laea.hpp | 170 sCe = 2. * asin(.5 * rho / this->m_proj_parm.rq); in inv() 198 lp_lat = pj_authlat(asin(ab), this->m_proj_parm.apa); in inv() 266 lp_lat = 2. * asin(lp_lat); in inv() 273 lp_lat = fabs(rh) <= epsilon10 ? 0. : asin(xy_y * sinz / rh); in inv() 279 … asin(cosz * this->m_proj_parm.sinb1 + xy_y * sinz * this->m_proj_parm.cosb1 / rh); in inv()
|
/third_party/boost/boost/math/complex/ |
D | asin.hpp | 17 namespace std{ using ::sqrt; using ::fabs; using ::acos; using ::asin; using ::atan; using ::atan2;… 23 inline std::complex<T> asin(const std::complex<T>& z) in asin() function 115 return std::complex<T>(std::asin(z.real()), z.imag()); in asin() 138 real = std::asin(b); in asin() 180 real = std::asin(x); in asin()
|
/third_party/boost/libs/qvm/test/ |
D | math_test.cpp | 39 test1<float>(&boost::qvm::asin<float>, &::asinf); in main() 60 test1<double>(&boost::qvm::asin<double>, &::asin); in main() 81 test1<long double>(&boost::qvm::asin<long double>, &::asinl); in main()
|
/third_party/boost/libs/math/doc/complex/ |
D | complex-tr1.qbk | 30 [section:asin asin] 34 #include <boost/math/complex/asin.hpp> 39 std::complex<T> asin(const std::complex<T>& z); 43 __formula [$../images/asin.png]
|
/third_party/mindspore/tests/st/ops/cpu/ |
D | test_asin_op.py | 30 self.asin = P.Asin() 33 return self.asin(x)
|
/third_party/boost/libs/multiprecision/test/ |
D | test_asin.cpp | 79 T val = asin(exact_data[k][0]); in test() 84 val = asin(-exact_data[k][0]); in test() 94 BOOST_TEST(asin(T(0)) == 0); in test()
|
/third_party/boost/boost/numeric/interval/ |
D | rounded_transc.hpp | 32 BOOST_NUMERIC_INTERVAL_new_func(asin) 63 BOOST_NUMERIC_INTERVAL_new_func(asin) 109 BOOST_NUMERIC_INTERVAL_new_func(asin)
|
/third_party/boost/libs/math/test/float128/ |
D | test_std_lib.cpp | 33 …BOOST_CHECK_CLOSE_FRACTION(std::asin(BOOST_FLOAT128_C(0.25)), BOOST_FLOAT128_C(0.25268025514207865… in BOOST_AUTO_TEST_CASE() 34 …BOOST_CHECK_CLOSE_FRACTION(std::asin(BOOST_FLOAT128_C(-0.25)), BOOST_FLOAT128_C(-0.252680255142078… in BOOST_AUTO_TEST_CASE() 35 …BOOST_CHECK_CLOSE_FRACTION(std::asin(BOOST_FLOAT128_C(0.75)), BOOST_FLOAT128_C(0.84806207898148100… in BOOST_AUTO_TEST_CASE() 36 …BOOST_CHECK_CLOSE_FRACTION(std::asin(BOOST_FLOAT128_C(-0.75)), BOOST_FLOAT128_C(-0.848062078981481… in BOOST_AUTO_TEST_CASE() 37 BOOST_CHECK_EQUAL(std::asin(BOOST_FLOAT128_C(0.0)), 0); in BOOST_AUTO_TEST_CASE() 38 …BOOST_CHECK_CLOSE_FRACTION(std::asin(BOOST_FLOAT128_C(1.0)), BOOST_FLOAT128_C(1.570796326794896619… in BOOST_AUTO_TEST_CASE() 205 …BOOST_CHECK_CLOSE_FRACTION(real(asin(cm)), BOOST_FLOATMAX_C(0.607638733777189610612367215408076257… in BOOST_AUTO_TEST_CASE() 206 …BOOST_CHECK_CLOSE_FRACTION(imag(asin(cm)), BOOST_FLOATMAX_C(2.156624662472399250203414731263709837… in BOOST_AUTO_TEST_CASE()
|