Searched refs:tanh (Results 1 - 24 of 24) sorted by relevance

/freebsd-9.3-release/lib/msun/src/
H A Ds_tanh.c22 * 0. tanh(x) is defined to be -----------
25 * 1. reduce x to non-negative by tanh(-x) = -tanh(x).
26 * 2. 0 <= x < 2**-28 : tanh(x) := x with inexact if x != 0
28 * 2**-28 <= x < 1 : tanh(x) := -----; t = expm1(-2x)
31 * 1 <= x < 22 : tanh(x) := 1 - -----; t = expm1(2x)
33 * 22 <= x <= INF : tanh(x) := 1.
36 * tanh(NaN) is NaN;
37 * only tanh(0)=0 is exact for finite argument.
46 tanh(doubl function
[all...]
H A Dmath.h201 double tanh(double);
/freebsd-9.3-release/contrib/libstdc++/include/c_compatibility/
H A Dmath.h45 using std::tanh;
/freebsd-9.3-release/contrib/libstdc++/libmath/
H A Dstubs.c445 return (float) tanh(x);
453 return tanh((double) x);
H A Dmathconf.h300 # define tanhf(x) tanh (x)
/freebsd-9.3-release/contrib/libstdc++/include/c/
H A Dstd_cmath.h67 #undef tanh macro
/freebsd-9.3-release/contrib/libstdc++/include/tr1/
H A Dmath.h93 using std::tr1::tanh;
/freebsd-9.3-release/contrib/gcc/
H A Dfp-test.c53 extern double tanh (double);
237 d1 = tanh (d2);
H A Dsys-protos.h1139 extern double tanh(double);
/freebsd-9.3-release/lib/msun/
H A DSymbol.map175 tanh;
H A DMakefile136 round.3 scalbn.3 signbit.3 sin.3 sinh.3 sqrt.3 tan.3 tanh.3 trunc.3 \
204 MLINKS+=tanh.3 tanhf.3
/freebsd-9.3-release/contrib/libstdc++/include/c_std/
H A Dstd_cmath.h80 #undef tanh macro
440 using ::tanh;
443 tanh(float __x) function
447 tanh(long double __x) function
453 tanh(_Tp __x) function
/freebsd-9.3-release/tools/regression/include/tgmath/
H A Dtgmath.c89 TGMACRO(tanh)
453 PRINT("tanh",
454 PASS_REAL_ARG_REAL_RET(tanh) &&
455 PASS_COMPLEX_ARG_COMPLEX_RET(tanh));
/freebsd-9.3-release/include/
H A Dtgmath.h151 #define tanh(x) __tg_full(x, tanh) macro
/freebsd-9.3-release/usr.bin/xlint/llib/
H A Dllib-lstdc105 double (tanh)(double x);
H A Dllib-lposix285 double (tanh)(double x);
/freebsd-9.3-release/contrib/libstdc++/src/
H A Dcompatibility.cc477 _GLIBCXX_MATHL_WRAPPER1 (tanh, GLIBCXX_3.4);
/freebsd-9.3-release/contrib/llvm/include/llvm/Target/
H A DTargetLibraryInfo.h597 /// double tanh(double x);
598 tanh, enumerator in enum:llvm::LibFunc::Func
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Headers/
H A Dtgmath.h382 // tanh
390 __tg_tanh(double __x) {return tanh(__x);}
408 #undef tanh macro
409 #define tanh(__x) __tg_tanh(__tg_promote1((__x))(__x)) macro
/freebsd-9.3-release/contrib/libstdc++/include/std/
H A Dstd_complex.h101 template<typename _Tp> complex<_Tp> tanh(const complex<_Tp>&);
909 // 26.2.8/15 tanh(__z): Returns the hyperbolic tangent of __z.
929 tanh(const complex<_Tp>& __z) { return __complex_tanh(__z.__rep()); } function
933 tanh(const complex<_Tp>& __z) { return __complex_tanh(__z); } function
/freebsd-9.3-release/contrib/libstdc++/include/bits/
H A Dvalarray_before.h134 { return tanh(__t); }
H A Dvalarray_after.h454 _DEFINE_EXPR_UNARY_FUNCTION(tanh)
/freebsd-9.3-release/contrib/llvm/lib/Analysis/
H A DConstantFolding.cpp1243 return Name == "tan" || Name == "tanh";
1457 else if (Name == "tanh" && TLI->has(LibFunc::tanh))
1458 return ConstantFoldFP(tanh, V, Ty);
/freebsd-9.3-release/contrib/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp2143 case LibFunc::tanh:

Completed in 186 milliseconds