Home
last modified time | relevance | path

Searched refs:sinl (Results 1 – 17 of 17) sorted by relevance

/bionic/libm/upstream-netbsd/lib/libm/complex/
Dcsinl.c44 w = sinl(creall(z)) * ch + (cosl(creall(z)) * sh) * I; in csinl()
Dccosl.c44 w = cosl(creall(z)) * ch - (sinl(creall(z)) * sh) * I; in ccosl()
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()
Dcexpl.c45 w = r * cosl(y) + r * sinl(y) * I; in cexpl()
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()
/bionic/libm/upstream-freebsd/lib/msun/src/
Ds_sin.c88 __weak_reference(sin, sinl);
Ds_cpowl.c72 w = CMPLXL(r * cosl(theta), r * sinl(theta)); in cpowl()
Ds_sinl.c48 sinl(long double x) in sinl() function
/bionic/libm/upstream-freebsd/lib/msun/ld128/
Dk_expl.h320 sinl(y) * exp_x * scale1 * scale2)); in __ldexp_cexpl()
/bionic/libm/x86/
Ds_sin.S324 ALIAS_SYMBOL(sinl, sin);
/bionic/libm/
Dlibm.map.txt248 sinl; # introduced=21
/bionic/tests/headers/posix/
Dmath_h.c320 FUNCTION(sinl, long double (*f)(long double)); in math_h()
/bionic/libc/include/
Dmath.h100 long double sinl(long double __x) __RENAME_LDBL(sin, 3, 21);
/bionic/libc/tools/
Dposix-2013.txt969 sinl
/bionic/tests/
Dmath_test.cpp522 TEST(MATH_TEST, sinl) { in TEST() argument
523 ASSERT_DOUBLE_EQ(0.0L, sinl(0.0L)); in TEST()