HomeSort by: relevance | last modified time | path
    Searched refs:sinh (Results 1 - 25 of 86) sorted by relevancy

1 2 3 4

  /src/lib/libm/src/
w_sinh.c 19 * wrapper sinh(x)
27 __weak_alias(sinh, _sinh)
31 sinh(double x) /* wrapper sinh */
40 return __kernel_standard(x,x,25); /* sinh overflow */
e_sinhl.c 50 * |sinh(x)/x - s(x)| < 2**-70.3
66 * |sinh(x)/x - s(x)| < 2**-118.0
114 if(shuge+x>1) RETURNI(x); /* sinh(tiny) = tiny with inexact */
138 /* |x| > o_threshold, sinh(x) overflow */
148 return sinh(x);
namespace.h 95 #define sinh _sinh macro
  /src/lib/libm/complex/
ccosh.c 44 w = cosh(x) * cos(y) + (sinh(x) * sin(y)) * I;
csinh.c 44 w = sinh(x) * cos(y) + (cosh(x) * sin(y)) * I;
ctanh.c 45 w = sinh(2.0 * x) / d + (sin(2.0 * y) / d) * I;
ctan.c 57 w = sin(2.0 * creal(z)) / d + (sinh(2.0 * cimag(z)) / d) * I;
cephes_subr.c 37 /* calculate cosh and sinh */
46 *s = sinh(x);
  /src/lib/libm/noieee_src/
n_sinh.c 33 static char sccsid[] = "@(#)sinh.c 8.1 (Berkeley) 6/4/93";
37 /* SINH(X)
51 * 1. reduce x to non-negative by sinh(-x) = - sinh(x).
55 * 0 <= x <= lnovfl : sinh(x) := --------------------------------
57 * lnovfl <= x <= lnovfl+ln2 : sinh(x) := expm1(x)/2 (avoid overflow)
62 * sinh(x) is x if x is +INF, -INF, or NaN.
63 * only sinh(0)=0 is exact for finite argument.
66 * sinh(x) returns the exact hyperbolic sine of x nearly rounded. In
82 __weak_alias(sinh, _sinh)
109 sinh(double x) function
    [all...]
  /src/tests/lib/libm/
t_sinh.c 56 * sinh(3)
61 atf_tc_set_md_var(tc, "descr", "sinh(x) for some values");
73 if (!(fabs((sinh(x) - sinh_x)/sinh_x) <= eps)) {
74 atf_tc_fail_nonfatal("sinh(%.17g) = %.17g != %.17g\n",
75 x, sinh(x), sinh_x);
83 atf_tc_set_md_var(tc, "descr", "Test sinh(NaN) == NaN");
91 ATF_CHECK(isnan(sinh(x)) != 0);
97 atf_tc_set_md_var(tc, "descr", "Test sinh(-Inf) == -Inf");
103 double y = sinh(x);
112 atf_tc_set_md_var(tc, "descr", "Test sinh(+Inf) == +Inf")
    [all...]
  /src/tests/lib/lua/libm/
h_lualibm.c 30 TEST(sinh(M_PI_2));
31 TEST(asinh(sinh(M_PI_2)));
81 TEST(sinh(M_PI_4));
lualibm.lua 36 test("sinh(M_PI_2)", lm.sinh(lm.M_PI_2))
37 test("asinh(sinh(M_PI_2))", lm.asinh(lm.sinh(lm.M_PI_2)))
84 test("sinh(M_PI_4)", lm.sinh(lm.M_PI_4))
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++98/
math_stubs_float.cc 205 return (float) sinh(x);
math_stubs_long_double.cc 205 return sinh((double) x);
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++98/
math_stubs_float.cc 205 return (float) sinh(x);
math_stubs_long_double.cc 205 return sinh((double) x);
  /src/external/apache2/llvm/dist/clang/lib/Headers/
__clang_cuda_math_forward_declares.h 170 __DEVICE__ double sinh(double);
171 __DEVICE__ float sinh(float);
266 using ::sinh;
  /src/external/lgpl3/mpc/dist/tests/
Makefile.am 66 sinh.dsc sqr.dsc sqrt.dsc sub.dsc sub_fr.dsc sub_ui.dsc tan.dsc \
74 sin.dat sinh.dat \
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/stdc/
tgmath.d 156 alias core.stdc.math.sinh sinh;
158 alias core.stdc.math.sinhf sinh;
160 alias core.stdc.math.sinhl sinh;
163 deprecated alias core.stdc.complex.csinh sinh;
164 deprecated alias core.stdc.complex.csinhf sinh;
165 deprecated alias core.stdc.complex.csinhl sinh;
656 alias core.stdc.math.sinh sinh;
658 alias core.stdc.math.sinhf sinh;
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
fp-test.cc 51 extern double sinh (double);
235 d1 = sinh (d2);
  /src/external/gpl3/gcc/dist/gcc/ginclude/
tgmath.h 71 #define sinh(z) __TGMATH_CPLX(z, sinh, csinh) macro
  /src/external/gpl3/gcc.old/dist/gcc/
fp-test.cc 51 extern double sinh (double);
235 d1 = sinh (d2);
  /src/external/gpl3/gcc.old/dist/gcc/ginclude/
tgmath.h 71 #define sinh(z) __TGMATH_CPLX(z, sinh, csinh) macro
  /src/external/lgpl3/mpc/dist/src/
Makefile.am 32 set_prec.c set_str.c set_x.c set_x_x.c sin.c sin_cos.c sinh.c sqr.c \
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/math/
trigonometry.d 1155 * $(TR $(TH x) $(TH sinh(x)) $(TH invalid?))
1160 real sinh(real x) @safe pure nothrow @nogc { return _sinh(x); }
1163 double sinh(double x) @safe pure nothrow @nogc { return _sinh(x); }
1166 float sinh(float x) @safe pure nothrow @nogc { return _sinh(x); }
1179 assert(isIdentical(sinh(F(0.0)), F(0.0)));
1180 assert(sinh(F(1.0)).isClose(F(sinh1)));
1191 // sinh(x) = (exp(x)-exp(-x))/2;
1209 assert(isClose(sinh(1.0L), real((E - 1.0 / E) / 2), real.sizeof > double.sizeof ? 1e-15 : 1e-14));
1235 assert(tanh(1.0).isClose(sinh(1.0) / cosh(1.0)));
1259 assert(isClose(tanh(1.0L), sinh(1.0L) / cosh(1.0L), real.sizeof > double.sizeof ? 1e-15 : 1e-14))
    [all...]

Completed in 44 milliseconds

1 2 3 4