Home
last modified time | relevance | path

Searched refs:coshl (Results 1 – 13 of 13) sorted by relevance

/bionic/libm/upstream-netbsd/lib/libm/complex/
Dccoshl.c44 w = coshl(x) * cosl(y) + (sinhl(x) * sinl(y)) * I; in ccoshl()
Dcsinhl.c44 w = sinhl(x) * cosl(y) + (coshl(x) * sinl(y)) * I; in csinhl()
Dctanhl.c44 d = coshl(2.0L * x) + cosl(2.0L * y); in ctanhl()
Dctanl.c46 d = cosl(2.0L * creall(z)) + coshl(2.0L * cimagl(z)); in ctanl()
Dcephes_subrl.c45 *c = coshl(x); in _cchshl()
/bionic/libm/upstream-freebsd/lib/msun/src/
De_cosh.c84 __weak_reference(cosh, coshl);
De_coshl.c86 coshl(long double x) in coshl() function
/bionic/libm/x86/
De_cosh.S275 ALIAS_SYMBOL(coshl, cosh);
/bionic/libm/
Dlibm.map.txt71 coshl; # introduced=21
/bionic/tests/headers/posix/
Dmath_h.c163 FUNCTION(coshl, long double (*f)(long double)); in math_h()
/bionic/libc/include/
Dmath.h120 long double coshl(long double __x) __RENAME_LDBL(cosh, 3, 21);
/bionic/libc/tools/
Dposix-2013.txt135 coshl
/bionic/tests/
Dmath_test.cpp603 TEST(MATH_TEST, coshl) { in TEST() argument
604 ASSERT_DOUBLE_EQ(1.0L, coshl(0.0L)); in TEST()