Home
last modified time | relevance | path

Searched refs:coshf (Results 1 – 5 of 5) sorted by relevance

/bionic/libm/upstream-freebsd/lib/msun/src/
Ds_ccoshf.c58 return (cpackf(coshf(x), x * y)); in ccoshf()
60 return (cpackf(coshf(x) * cosf(y), sinhf(x) * sinf(y))); in ccoshf()
Ds_csinhf.c60 return (cpackf(sinhf(x) * cosf(y), coshf(x) * sinf(y))); in csinhf()
Dmath_private.h706 #define __ieee754_coshf coshf
/bionic/libm/include/
Dmath.h313 float coshf(float);
/bionic/tests/
Dmath_test.cpp448 TEST(math, coshf) { in TEST() argument
449 ASSERT_FLOAT_EQ(1.0f, coshf(0.0f)); in TEST()