/third_party/jerryscript/tools/unit-tests/ |
H A D | gen-test-libm.c | 1020 /* 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 D | math-sinh.js | 23 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 D | sinhl.c | 6 return sinh(x); in sinhl() 41 return sinh(x); in sinhl()
|
H A D | sinh.c | 3 /* 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 D | sinhl.c | 6 return sinh(x); in sinhl() 41 return sinh(x); in sinhl()
|
H A D | sinh.c | 3 /* 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 D | math_sinh_test.cpp | 18 * 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 D | csinh.c | 30 * 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 D | ctanh.c | 40 * 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 D | tgmath.c | 276 #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 D | float_iperb.c | 31 {FUNC_NORMAL, 50, sinh, "sinh", "dsinh", "rsinh",
|
/third_party/ltp/testcases/misc/math/float/iperb/ |
H A D | Makefile | 27 CLEAN_TARGETS := [rd]*sin [rd]sinh [rd]*cos [rd]cosh [rd]*tan [rd]*tan2 \
|
H A D | gensinh.c | 52 tabR[i] = sinh(Inc * (i - nbVal / 2)); in create_Result_file()
|
/third_party/ltp/testcases/misc/math/float/trigo/ |
H A D | Makefile | 27 CLEAN_TARGETS := [rd]*sin [rd]sinh [rd]*cos [rd]cosh [rd]*tan [rd]*tan2 \
|
/third_party/typescript/tests/baselines/reference/ |
H A D | doYouNeedToChangeYourTargetLibraryES2015.js | 48 const testMathSinh = Math.sinh(0); 146 var testMathSinh = Math.sinh(0);
|
/third_party/jerryscript/jerry-libm/include/ |
H A D | math.h | 61 double sinh (double x);
|
/third_party/jerryscript/jerry-libm/ |
H A D | sinh.c | 32 * 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 D | jerry-libm-internal.h | 92 double sinh (double x);
|
/third_party/node/deps/v8/src/base/ |
H A D | ieee754.h | 81 V8_BASE_EXPORT double sinh(double x);
|
/third_party/musl/libc-test/src/math/ |
H A D | sinh.c | 6 #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 D | tgmath.h | 200 #undef sinh macro 263 #define sinh(x) __tg_real_complex(sinh, (x)) macro
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | tgmath.h | 200 #undef sinh macro 263 #define sinh(x) __tg_real_complex(sinh, (x)) macro
|
/third_party/musl/include/ |
H A D | tgmath.h | 200 #undef sinh macro 263 #define sinh(x) __tg_real_complex(sinh, (x)) macro
|
/third_party/ffmpeg/libavfilter/tests/ |
H A D | dnn-layer-mathunary.c | 48 return sinh(f); in get_expected()
|
/third_party/ffmpeg/tests/dnn/ |
H A D | dnn-layer-mathunary-test.c | 48 return sinh(f); in get_expected()
|