Home
last modified time | relevance | path

Searched refs:sinh (Results 1 - 25 of 84) sorted by relevance

1234

/third_party/jerryscript/tools/unit-tests/
H A Dgen-test-libm.c1020 /* sinh tests */ in main()
1021 GEN_DBL_TEST (sinh (0.0)); in main()
1022 GEN_DBL_TEST (sinh (-0.0)); in main()
1023 GEN_DBL_TEST (sinh (1.0)); in main()
1024 GEN_DBL_TEST (sinh (-1.0)); in main()
1025 GEN_DBL_TEST (sinh (INFINITY)); in main()
1026 GEN_DBL_TEST (sinh (-INFINITY)); in main()
1027 GEN_DBL_TEST (sinh (NAN)); in main()
1028 GEN_DBL_TEST (sinh (M_PI)); in main()
1029 GEN_DBL_TEST (sinh ( in main()
[all...]
/third_party/jerryscript/tests/jerry/es2015/
H A Dmath-sinh.js23 assert(isNaN(Math.sinh(NaN)));
24 assert(isSameZero(Math.sinh(p_zero), p_zero));
25 assert(isSameZero(Math.sinh(n_zero), n_zero));
26 assert(Math.sinh(Number.POSITIVE_INFINITY) === Number.POSITIVE_INFINITY);
27 assert(Math.sinh(Number.NEGATIVE_INFINITY) === Number.NEGATIVE_INFINITY);
/third_party/musl/src/math/
H A Dsinhl.c6 return sinh(x); in sinhl()
41 return sinh(x); in sinhl()
H A Dsinh.c3 /* sinh(x) = (exp(x) - 1/exp(x))/2
7 double sinh(double x) in sinh() function
/third_party/musl/porting/liteos_a/kernel/src/math/
H A Dsinhl.c6 return sinh(x); in sinhl()
41 return sinh(x); in sinhl()
H A Dsinh.c3 /* sinh(x) = (exp(x) - 1/exp(x))/2
7 double sinh(double x) in sinh() function
/third_party/musl/libc-test/src/functionalext/supplement/math/math_gtest/
H A Dmath_sinh_test.cpp18 * of the sinh interface.
25 bool testResult = DoubleUlpCmp(g_sinhData[i].expected, sinh(g_sinhData[i].input), 2); in HWTEST_F()
37 EXPECT_DOUBLE_EQ(0.0, sinh(0.0)); in HWTEST_F()
/third_party/musl/src/complex/
H A Dcsinh.c30 * sinh(z) = sinh(x+iy)
31 * = sinh(x) cos(y) + i cosh(x) sin(y).
58 return CMPLX(sinh(x), y); in csinh()
60 return CMPLX(sinh(x) * cos(y), cosh(x) * sin(y)); in csinh()
79 * sinh(+-0 +- I Inf) = sign(d(+-0, dNaN))0 + I dNaN. in csinh()
83 * sinh(+-0 +- I NaN) = sign(d(+-0, NaN))0 + I d(NaN). in csinh()
91 * sinh(+-Inf +- I 0) = +-Inf + I +-0. in csinh()
93 * sinh(NaN +- I 0) = d(NaN) + I +-0. in csinh()
102 * sinh( in csinh()
[all...]
H A Dctanh.c40 * s = sinh(x)
45 * tanh(z) = sinh(z) / cosh(z)
47 * sinh(x) cos(y) + i cosh(x) sin(y)
49 * cosh(x) cos(y) + i sinh(x) sin(y)
51 * cosh(x) sinh(x) / cos^2(y) + i tan(y)
53 * 1 + sinh^2(x) / cos^2(y)
114 * approximation sinh^2(huge) ~= exp(2*huge) / 4. in ctanh()
125 s = sinh(x); in ctanh()
/third_party/musl/libc-test/src/api/
H A Dtgmath.c276 #ifdef sinh in f()
277 {double r = sinh(x);} in f()
279 #error no sinh(x) in f()
/third_party/ltp/testcases/misc/math/float/
H A Dfloat_iperb.c31 {FUNC_NORMAL, 50, sinh, "sinh", "dsinh", "rsinh",
/third_party/ltp/testcases/misc/math/float/iperb/
H A DMakefile27 CLEAN_TARGETS := [rd]*sin [rd]sinh [rd]*cos [rd]cosh [rd]*tan [rd]*tan2 \
H A Dgensinh.c52 tabR[i] = sinh(Inc * (i - nbVal / 2)); in create_Result_file()
/third_party/ltp/testcases/misc/math/float/trigo/
H A DMakefile27 CLEAN_TARGETS := [rd]*sin [rd]sinh [rd]*cos [rd]cosh [rd]*tan [rd]*tan2 \
/third_party/typescript/tests/baselines/reference/
H A DdoYouNeedToChangeYourTargetLibraryES2015.js48 const testMathSinh = Math.sinh(0);
146 var testMathSinh = Math.sinh(0);
/third_party/jerryscript/jerry-libm/include/
H A Dmath.h61 double sinh (double x);
/third_party/jerryscript/jerry-libm/
H A Dsinh.c32 * mathematically sinh(x) if defined to be (exp(x) - exp(-x)) / 2
33 * 1. Replace x by |x| (sinh(-x) = -sinh(x)).
36 * 0 <= x <= 22 : sinh(x) := -------------, E = expm1(x)
39 * 22 <= x <= lnovft : sinh(x) := exp(x) / 2
40 * lnovft <= x <= ln2ovft: sinh(x) := exp(x / 2) / 2 * exp(x / 2)
41 * ln2ovft < x : sinh(x) := x * shuge (overflow)
44 * sinh(x) is |x| if x is +INF, -INF, or NaN.
45 * only sinh(0) = 0 is exact for finite x.
53 sinh (doubl function
[all...]
H A Djerry-libm-internal.h92 double sinh (double x);
/third_party/node/deps/v8/src/base/
H A Dieee754.h81 V8_BASE_EXPORT double sinh(double x);
/third_party/musl/libc-test/src/math/
H A Dsinh.c6 #include "crlibm/sinh.h"
7 #include "ucb/sinh.h"
8 #include "sanity/sinh.h"
9 #include "special/sinh.h"
28 y = sinh(p->x); in main()
33 printf("%s:%d: bad fp exception: %s sinh(%a)=%a, want %s", in main()
45 printf("%s:%d: %s sinh(%a) want %a got %a ulperr %.3f = %a + %a\n", in main()
/third_party/musl/porting/uniproton/kernel/include/
H A Dtgmath.h200 #undef sinh macro
263 #define sinh(x) __tg_real_complex(sinh, (x)) macro
/third_party/musl/porting/liteos_m/kernel/include/
H A Dtgmath.h200 #undef sinh macro
263 #define sinh(x) __tg_real_complex(sinh, (x)) macro
/third_party/musl/include/
H A Dtgmath.h200 #undef sinh macro
263 #define sinh(x) __tg_real_complex(sinh, (x)) macro
/third_party/ffmpeg/libavfilter/tests/
H A Ddnn-layer-mathunary.c48 return sinh(f); in get_expected()
/third_party/ffmpeg/tests/dnn/
H A Ddnn-layer-mathunary-test.c48 return sinh(f); in get_expected()

Completed in 9 milliseconds

1234