Home
last modified time | relevance | path

Searched refs:cosl (Results 1 – 16 of 16) sorted by relevance

/bionic/libm/upstream-netbsd/lib/libm/complex/
Dccosl.c44 w = cosl(creall(z)) * ch - (sinl(creall(z)) * sh) * I; in ccosl()
Dcsinl.c44 w = sinl(creall(z)) * ch + (cosl(creall(z)) * sh) * I; in csinl()
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.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()
/bionic/libm/upstream-freebsd/lib/msun/src/
Ds_cos.c88 __weak_reference(cos, cosl);
Ds_cpowl.c72 w = CMPLXL(r * cosl(theta), r * sinl(theta)); in cpowl()
Ds_cosl.c53 cosl(long double x) in cosl() function
/bionic/libm/x86/
Ds_cos.S317 ALIAS_SYMBOL(cosl, cos);
/bionic/tests/headers/posix/
Dmath_h.c164 FUNCTION(cosl, long double (*f)(long double)); in math_h()
/bionic/libc/include/
Dmath.h96 long double cosl(long double __x) __RENAME_LDBL(cos, 3, 21);
/bionic/libm/
Dlibm.map.txt72 cosl; # introduced=21
/bionic/libc/tools/
Dposix-2013.txt137 cosl
/bionic/tests/
Dmath_test.cpp510 TEST(MATH_TEST, cosl) { in TEST() argument
511 ASSERT_DOUBLE_EQ(1.0L, cosl(0.0L)); in TEST()