Searched refs:cosh (Results 1 – 7 of 7) sorted by relevance
63 DECLARE_IMPRECISE(cosh);
65 return (cpack(cosh(x), x * y)); in ccosh()67 return (cpack(cosh(x) * cos(y), sinh(x) * sin(y))); in ccosh()
67 return (cpack(sinh(x) * cos(y), cosh(x) * sin(y))); in csinh()
680 #define __ieee754_cosh cosh
53 using ::cosh;
200 double cosh(double);
444 TEST(math, cosh) { in TEST() argument445 ASSERT_DOUBLE_EQ(1.0, cosh(0.0)); in TEST()