Searched refs:cosh (Results 1 - 25 of 28) sorted by relevance

12

/freebsd-10.0-release/lib/msun/src/
H A Dimprecise.c63 DECLARE_IMPRECISE(cosh); variable
H A Ds_ccosh.c30 * cosh(z) = cosh(x+iy)
31 * = cosh(x) cos(y) + i sinh(x) sin(y).
65 return (cpack(cosh(x), x * y));
67 return (cpack(cosh(x) * cos(y), sinh(x) * sin(y)));
69 /* |x| >= 22, so cosh(x) ~= exp(|x|) */
86 * cosh(+-0 +- I Inf) = dNaN + I sign(d(+-0, dNaN))0.
90 * cosh(+-0 +- I NaN) = d(NaN) + I sign(d(+-0, NaN))0.
98 * cosh(+-Inf +- I 0) = +Inf + I (+-)(+-)0.
100 * cosh(Na
[all...]
H A Ds_csinh.c31 * = sinh(x) cos(y) + i cosh(x) sin(y).
67 return (cpack(sinh(x) * cos(y), cosh(x) * sin(y)));
69 /* |x| >= 22, so cosh(x) ~= exp(|x|) */
H A Dmath.h244 double cosh(double);
H A Dmath_private.h680 #define __ieee754_cosh cosh
/freebsd-10.0-release/contrib/libstdc++/include/c_compatibility/
H A Dmath.h43 using std::cosh;
/freebsd-10.0-release/contrib/libstdc++/libmath/
H A Dstubs.c160 return (float) cosh(x);
168 return cosh((double) x);
H A Dmathconf.h273 # define coshf(x) cosh (x)
/freebsd-10.0-release/contrib/libstdc++/include/c/
H A Dstd_cmath.h52 #undef cosh macro
/freebsd-10.0-release/contrib/libstdc++/include/tr1/
H A Dmath.h52 using std::tr1::cosh;
/freebsd-10.0-release/contrib/gcc/
H A Dfp-test.c51 extern double cosh (double);
235 d1 = cosh (d2);
/freebsd-10.0-release/contrib/libstdc++/include/c_std/
H A Dstd_cmath.h65 #undef cosh macro
197 using ::cosh;
200 cosh(float __x) function
204 cosh(long double __x) function
210 cosh(_Tp __x) function
/freebsd-10.0-release/lib/msun/
H A DSymbol.map19 cosh;
H A DMakefile132 cimag.3 copysign.3 cos.3 cosh.3 csqrt.3 erf.3 exp.3 fabs.3 fdim.3 \
163 MLINKS+=cosh.3 coshf.3
/freebsd-10.0-release/tools/regression/include/tgmath/
H A Dtgmath.c87 TGMACRO(cosh)
445 PRINT("cosh",
446 PASS_REAL_ARG_REAL_RET(cosh) &&
447 PASS_COMPLEX_ARG_COMPLEX_RET(cosh));
/freebsd-10.0-release/contrib/libstdc++/include/std/
H A Dstd_complex.h76 template<typename _Tp> complex<_Tp> cosh(const complex<_Tp>&);
666 return complex<_Tp>(cos(__x) * cosh(__y), -sin(__x) * sinh(__y));
689 // 26.2.8/2 cosh(__z): Returns the hyperbolic cosine of __z.
696 return complex<_Tp>(cosh(__x) * cos(__y), sinh(__x) * sin(__y));
712 cosh(const complex<_Tp>& __z) { return __complex_cosh(__z.__rep()); } function
716 cosh(const complex<_Tp>& __z) { return __complex_cosh(__z); } function
784 return complex<_Tp>(sin(__x) * cosh(__y), cos(__x) * sinh(__y));
814 return complex<_Tp>(sinh(__x) * cos(__y), cosh(__x) * sin(__y));
914 { return std::sinh(__z) / std::cosh(__z); }
/freebsd-10.0-release/include/
H A Dtgmath.h150 #define cosh(x) __tg_full(x, cosh) macro
/freebsd-10.0-release/tools/regression/lib/msun/
H A Dtest-ctrig.c305 test_even_tol(ccosh, z, CMPLXL(cosh(nums[i]), 0), DBL_ULP());
334 test_even_tol(ccos, z, CMPLXL(cosh(nums[i]), -0.0), DBL_ULP());
355 * sinh(z) = (sinh(0.5) + i cosh(0.5)) * sqrt(2)/2
356 * cosh(z) = (cosh(0.5) + i sinh(0.5)) * sqrt(2)/2
357 * tanh(z) = (2cosh(0.5)sinh(0.5) + i) / (2 cosh(0.5)**2 - 1)
359 * sinh(z) = cosh(0.5)
360 * cosh(z) = -i sinh(0.5)
363 * sinh(z) = (-sinh(1) + i cosh(
[all...]
/freebsd-10.0-release/usr.bin/xlint/llib/
H A Dllib-lstdc103 double (cosh)(double x);
H A Dllib-lposix98 double (cosh)(double x);
/freebsd-10.0-release/contrib/libstdc++/src/
H A Dcompatibility.cc432 _GLIBCXX_MATHL_WRAPPER1 (cosh, GLIBCXX_3.4);
/freebsd-10.0-release/contrib/llvm/include/llvm/Target/
H A DTargetLibraryInfo.h158 /// double cosh(double x);
159 cosh, enumerator in enum:llvm::LibFunc::Func
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Headers/
H A Dtgmath.h324 // cosh
332 __tg_cosh(double __x) {return cosh(__x);}
350 #undef cosh macro
351 #define cosh(__x) __tg_cosh(__tg_promote1((__x))(__x)) macro
/freebsd-10.0-release/contrib/libstdc++/include/bits/
H A Dvalarray_before.h92 { return cosh(__t); }
/freebsd-10.0-release/contrib/llvm/lib/Analysis/
H A DConstantFolding.cpp1181 return Name == "cos" || Name == "ceil" || Name == "cosf" || Name == "cosh";
1358 else if (Name == "cosh" && TLI->has(LibFunc::cosh))
1359 return ConstantFoldFP(cosh, V, Ty);

Completed in 420 milliseconds

12