Home
last modified time | relevance | path

Searched refs:asin (Results 1 - 25 of 88) sorted by relevance

1234

/third_party/jerryscript/tools/unit-tests/
H A Dgen-test-libm.c84 /* asin tests*/ in main()
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 (INFINIT in main()
[all...]
/third_party/musl/src/math/i386/
H A Dasin.s1 .global asin
2 .type asin,@function
3 asin: label
/third_party/musl/libc-test/src/functionalext/supplement/math/math_gtest/
H A Dmath_asin_test.cpp17 * @tc.desc: Obtain test data in sequence and check if it is within the expected error range of the asin interface.
24 bool testResult = DoubleUlpCmp(g_asinData[i].expected, asin(g_asinData[i].input), 1); in HWTEST_F()
31 * @tc.desc: When the parameter of asin is valid, test the return value of the function.
36 EXPECT_DOUBLE_EQ(0.0, asin(0.0)); in HWTEST_F()
/third_party/musl/libc-test/src/api/
H A Dtgmath.c16 #ifdef asin in f()
17 {double r = asin(x);} in f()
19 #error no asin(x) in f()
/third_party/skia/modules/skottie/src/effects/
H A DBuldgeEffect.cpp42 "float arc_ratio = asin(length(v)*u_rcpR)*u_rcpAsinInvR;"
113 builder.uniform("u_asinInverseR") = std::asin(1/r); in buildEffectShader()
115 builder.uniform("u_rcpAsinInvR") = 1.0f/std::asin(1/r); in buildEffectShader()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DCalendarAstronomer.java457 Math.asin(sinB*cosE + cosB*sinE*sinL) ); in eclipticToEquatorial()
489 double altitude = Math.asin(sinD*sinL + cosD*cosL*cosH); in eclipticToHorizon()
780 // double y = Math.asin(Math.sin(x) / Math.sin(psi)) * RAD_DEG;
922 // double sDec = Math.asin(sin_sDec)*RAD_DEG;
1077 double moonEclipLat = Math.asin(y * Math.sin(moonI)); in getMoonPosition()
1320 double y = Math.asin(Math.sin(x) / Math.sin(psi)); in riseOrSet()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DCalendarAstronomer.java459 Math.asin(sinB*cosE + cosB*sinE*sinL) ); in eclipticToEquatorial()
491 double altitude = Math.asin(sinD*sinL + cosD*cosL*cosH); in eclipticToHorizon()
782 // double y = Math.asin(Math.sin(x) / Math.sin(psi)) * RAD_DEG;
924 // double sDec = Math.asin(sin_sDec)*RAD_DEG;
1079 double moonEclipLat = Math.asin(y * Math.sin(moonI)); in getMoonPosition()
1322 double y = Math.asin(Math.sin(x) / Math.sin(psi)); in riseOrSet()
/third_party/ltp/testcases/misc/math/float/
H A Dfloat_trigo.c31 {FUNC_NORMAL, 50, asin, "asin", "dasin", "rasin",
/third_party/jerryscript/jerry-libm/include/
H A Dmath.h55 double asin (double);
/third_party/node/deps/v8/src/base/
H A Dieee754.h22 V8_BASE_EXPORT double asin(double x);
/third_party/icu/icu4c/source/i18n/
H A Dastro.cpp478 asin(sinB*cosE + cosB*sinE*sinL) ); in eclipticToEquatorial()
514 double altitude = asin(sinD*sinL + cosD*cosL*cosH); in eclipticToHorizon()
840 // double y = ::asin(sin(x) / ::sin(psi)) * RAD_DEG;
982 // double sDec = ::asin(sin_sDec)*RAD_DEG;
1138 double moonEclipLat = ::asin(y * ::sin(moonI)); in getMoonPosition()
1403 double y = ::asin(sin(x) / ::sin(psi)); in riseOrSet()
/third_party/node/deps/icu-small/source/i18n/
H A Dastro.cpp478 asin(sinB*cosE + cosB*sinE*sinL) ); in eclipticToEquatorial()
514 double altitude = asin(sinD*sinL + cosD*cosL*cosH); in eclipticToHorizon()
840 // double y = ::asin(sin(x) / ::sin(psi)) * RAD_DEG;
982 // double sDec = ::asin(sin_sDec)*RAD_DEG;
1138 double moonEclipLat = ::asin(y * ::sin(moonI)); in getMoonPosition()
1403 double y = ::asin(sin(x) / ::sin(psi)); in riseOrSet()
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dastro.cpp478 asin(sinB*cosE + cosB*sinE*sinL) ); in eclipticToEquatorial()
514 double altitude = asin(sinD*sinL + cosD*cosL*cosH); in eclipticToHorizon()
840 // double y = ::asin(sin(x) / ::sin(psi)) * RAD_DEG;
982 // double sDec = ::asin(sin_sDec)*RAD_DEG;
1138 double moonEclipLat = ::asin(y * ::sin(moonI)); in getMoonPosition()
1403 double y = ::asin(sin(x) / ::sin(psi)); in riseOrSet()
/third_party/jerryscript/tests/jerry/
H A Dregression-test-issue-786.js37 try { Math.asin(Date.prototype.getDay) } catch (err) { }
/third_party/musl/libc-test/src/math/
H A Dasin.c6 #include "crlibm/asin.h"
7 #include "ucb/asin.h"
8 #include "sanity/asin.h"
9 #include "special/asin.h"
28 y = asin(p->x); in main()
32 printf("%s:%d: bad fp exception: %s asin(%a)=%a, want %s", in main()
39 printf("%s:%d: %s asin(%a) want %a got %a ulperr %.3f = %a + %a\n", in main()
/third_party/musl/porting/uniproton/kernel/include/
H A Dtgmath.h148 #undef asin macro
211 #define asin(x) __tg_real_complex(asin, (x)) macro
/third_party/musl/porting/liteos_m/kernel/include/
H A Dtgmath.h148 #undef asin macro
211 #define asin(x) __tg_real_complex(asin, (x)) macro
/third_party/musl/include/
H A Dtgmath.h148 #undef asin macro
211 #define asin(x) __tg_real_complex(asin, (x)) macro
/third_party/jerryscript/jerry-libm/
H A Djerry-libm-internal.h84 double asin (double x);
/third_party/musl/porting/liteos_a/kernel/src/math/
H A Dasin.c12 /* asin(x)
14 * Since asin(x) = x + x^3/6 + x^5*3/40 + x^7*15/336 + ...
15 * we approximate asin(x) on [0,0.5] by
16 * asin(x) = x + x*x^2*R(x^2)
18 * R(x^2) is a rational approximation of (asin(x)-x)/x^3
20 * |(asin(x)-x)/x^3 - R(x^2)| < 2^(-58.75)
23 * asin(x) = pi/2-2*asin(sqrt((1-x)/2))
26 * asin(x) = pi/2 - 2*(s+s*z*R(z))
32 * asin(
67 double asin(double x) asin() function
[all...]
H A Dasinl.c13 * See comments in asin.c.
22 return asin(x); in asinl()
42 /* asin(+-1)=+-pi/2 with inexact */ in asinl()
/third_party/musl/src/math/
H A Dasin.c12 /* asin(x)
14 * Since asin(x) = x + x^3/6 + x^5*3/40 + x^7*15/336 + ...
15 * we approximate asin(x) on [0,0.5] by
16 * asin(x) = x + x*x^2*R(x^2)
18 * R(x^2) is a rational approximation of (asin(x)-x)/x^3
20 * |(asin(x)-x)/x^3 - R(x^2)| < 2^(-58.75)
23 * asin(x) = pi/2-2*asin(sqrt((1-x)/2))
26 * asin(x) = pi/2 - 2*(s+s*z*R(z))
32 * asin(
67 double asin(double x) asin() function
[all...]
H A Dasinl.c13 * See comments in asin.c.
22 return asin(x); in asinl()
42 /* asin(+-1)=+-pi/2 with inexact */ in asinl()
/third_party/ltp/testcases/misc/math/float/trigo/
H A Dgenasin.c54 tabRasin[i] = asin((Inc * i) - 1); in create_Result_file()
110 ("problem during asin data file creation\n"); in main()
118 ("problem during asin result file creation\n"); in main()
129 printf("problem during asin result file creation\n"); in main()
/third_party/ffmpeg/libavfilter/tests/
H A Ddnn-layer-mathunary.c42 return asin(f); in get_expected()

Completed in 20 milliseconds

1234