Searched refs:creal (Results 1 – 22 of 22) sorted by relevance
/bionic/libm/upstream-freebsd/lib/msun/src/ |
D | s_csinh.c | 57 x = creal(z); in csinh() 81 return (CMPLX(creal(z) * copysign(1, x), cimag(z))); in csinh() 157 z = csinh(CMPLX(cimag(z), creal(z))); in csin() 158 return (CMPLX(cimag(z), creal(z))); in csin()
|
D | catrig.c | 283 x = creal(z); in casinh() 312 return (CMPLX(copysign(creal(w), x), copysign(cimag(w), y))); in casinh() 340 double complex w = casinh(CMPLX(cimag(z), creal(z))); in casin() 342 return (CMPLX(cimag(w), creal(w))); in casin() 365 x = creal(z); in cacos() 394 ry = creal(w) + m_ln2; in cacos() 438 rx = creal(w); in cacosh() 462 x = creal(z); in clog_for_large_values() 578 x = creal(z); in catanh() 643 double complex w = catanh(CMPLX(cimag(z), creal(z))); in catan() [all …]
|
D | s_ctanh.c | 83 x = creal(z); in ctanh() 147 z = ctanh(CMPLX(cimag(z), creal(z))); in ctan() 148 return (CMPLX(cimag(z), creal(z))); in ctan()
|
D | s_ccosh.c | 57 x = creal(z); in ccosh() 81 return (CMPLX(creal(z), cimag(z) * copysign(1, x))); in ccosh() 158 return (ccosh(CMPLX(-cimag(z), creal(z)))); in ccos()
|
D | s_creal.c | 34 creal(double complex z) in creal() function
|
D | s_carg.c | 39 return (atan2(cimag(z), creal(z))); in carg()
|
D | s_conj.c | 39 return (CMPLX(creal(z), -cimag(z))); in conj()
|
D | w_cabs.c | 18 return hypot(creal(z), cimag(z)); in cabs()
|
D | s_cproj.c | 42 if (!isinf(creal(z)) && !isinf(cimag(z))) in cproj()
|
D | s_cpow.c | 60 x = creal (z); in cpow()
|
D | s_cexp.c | 48 x = creal(z); in cexp()
|
D | s_csqrtf.c | 43 a = creal(z); in csqrtf()
|
D | k_exp.c | 94 x = creal(z); in __ldexp_cexp()
|
D | s_csqrt.c | 47 a = creal(z); in csqrt()
|
D | s_clog.c | 53 x = creal(z); in clog()
|
/bionic/tests/ |
D | complex_test.cpp | 43 *os << "(" << creal(c) << "," << cimag(c) << "i)"; in PrintTo() 252 TEST(complex_h, creal) { in TEST() argument 253 ASSERT_EQ(2.0, creal(2.0 + 3.0I)); in TEST() 319 ASSERT_TRUE(isnan(creal(z))); in TEST() 324 ASSERT_TRUE(isnan(creal(z))); in TEST() 329 ASSERT_TRUE(isnan(creal(z))); in TEST()
|
/bionic/tests/headers/posix/ |
D | tgmath_h.c | 117 TGMATHCONLY(creal); in tgmath_h()
|
D | complex_h.c | 118 FUNCTION(creal, double (*f)(double complex)); in complex_h()
|
/bionic/libc/include/ |
D | complex.h | 148 double creal(double complex __z) __INTRODUCED_IN(23);
|
/bionic/libm/ |
D | libm.map.txt | 76 creal; # introduced=23
|
/bionic/libc/tools/ |
D | posix-2013.txt | 145 creal
|
/bionic/docs/ |
D | status.md | 314 …sh`, `cexp`, `conj`, `cproj`, `csin`, `csinh`, `csqrt`, `ctan`, `ctanh`, `creal`, `cabsf`, `cargf`…
|