Home
last modified time | relevance | path

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

/bionic/libm/upstream-netbsd/lib/libm/complex/
Dcsinhl.c44 w = sinhl(x) * cosl(y) + (coshl(x) * sinl(y)) * I; in csinhl()
Dccoshl.c44 w = coshl(x) * cosl(y) + (sinhl(x) * sinl(y)) * I; in ccoshl()
Dctanhl.c45 w = sinhl(2.0L * x) / d + (sinl(2.0L * y) / d) * I; in ctanhl()
Dctanl.c57 w = sinl(2.0L * creall(z)) / d + (sinhl(2.0L * cimagl(z)) / d) * I; in ctanl()
Dcephes_subrl.c46 *s = sinhl(x); in _cchshl()
/bionic/libm/upstream-freebsd/lib/msun/src/
De_sinh.c78 __weak_reference(sinh, sinhl);
De_sinhl.c85 sinhl(long double x) in sinhl() function
/bionic/tests/headers/posix/
Dmath_h.c319 FUNCTION(sinhl, long double (*f)(long double)); in math_h()
/bionic/libm/
Dlibm.map.txt247 sinhl; # introduced=21
/bionic/libm/x86/
De_sinh.S327 ALIAS_SYMBOL(sinhl, sinh);
/bionic/libc/include/
Dmath.h122 long double sinhl(long double __x) __RENAME_LDBL(sinh, 3, 21);
/bionic/libc/tools/
Dposix-2013.txt967 sinhl
/bionic/tests/
Dmath_test.cpp615 TEST(MATH_TEST, sinhl) { in TEST() argument
616 ASSERT_DOUBLE_EQ(0.0L, sinhl(0.0L)); in TEST()