Home
last modified time | relevance | path

Searched refs:cimagl (Results 1 – 24 of 24) sorted by relevance

/third_party/musl/src/complex/
Dcacoshl.c11 int zineg = signbit(cimagl(z)); in cacoshl()
14 if (zineg) return CMPLXL(cimagl(z), -creall(z)); in cacoshl()
15 else return CMPLXL(-cimagl(z), creall(z)); in cacoshl()
Dcimagl.c3 long double (cimagl)(long double complex z)
5 return cimagl(z);
Dcatanhl.c11 z = catanl(CMPLXL(-cimagl(z), creall(z))); in catanhl()
12 return CMPLXL(cimagl(z), -creall(z)); in catanhl()
Dcsinl.c11 z = csinhl(CMPLXL(-cimagl(z), creall(z))); in csinl()
12 return CMPLXL(cimagl(z), -creall(z)); in csinl()
Dcprojl.c11 if (isinf(creall(z)) || isinf(cimagl(z))) in cprojl()
12 return CMPLXL(INFINITY, copysignl(0.0, cimagl(z))); in cprojl()
Dctanl.c11 z = ctanhl(CMPLXL(-cimagl(z), creall(z))); in ctanl()
12 return CMPLXL(cimagl(z), -creall(z)); in ctanl()
Dcasinhl.c11 z = casinl(CMPLXL(-cimagl(z), creall(z))); in casinhl()
12 return CMPLXL(cimagl(z), -creall(z)); in casinhl()
Dcasinl.c16 y = cimagl(z); in casinl()
19 return CMPLXL(cimagl(r), -creall(r)); in casinl()
Dconjl.c5 return CMPLXL(creall(z), -cimagl(z)); in conjl()
Dcabsl.c11 return hypotl(creall(z), cimagl(z)); in cabsl()
Dcargl.c11 return atan2l(cimagl(z), creall(z)); in cargl()
Dccosl.c11 return ccoshl(CMPLXL(-cimagl(z), creall(z))); in ccosl()
Dcacosl.c14 return CMPLXL(PI_2 - creall(z), -cimagl(z)); in cacosl()
Dcatanl.c98 y = cimagl(z); in catanl()
/third_party/musl/ndk_musl_include/
Dcomplex.h90 long double cimagl(long double complex);
114 #define cimagl(x) __CIMAG(x, long double) macro
/third_party/musl/include/
Dcomplex.h90 long double cimagl(long double complex);
114 #define cimagl(x) __CIMAG(x, long double) macro
/third_party/musl/porting/liteos_a/kernel/include/
Dcomplex.h90 long double cimagl(long double complex);
114 #define cimagl(x) __CIMAG(x, long double) macro
/third_party/musl/porting/liteos_m/kernel/include/
Dcomplex.h90 long double cimagl(long double complex);
114 #define cimagl(x) __CIMAG(x, long double) macro
/third_party/musl/porting/uniproton/kernel/include/
Dcomplex.h90 long double cimagl(long double complex);
114 #define cimagl(x) __CIMAG(x, long double) macro
/third_party/musl/libc-test/src/functionalext/supplement/math/math_gtest/
Dcomplex_test.cpp384 EXPECT_EQ(0.0, cimagl(0));
768 EXPECT_TRUE(isnan(cimagl(tan_result)));
781 EXPECT_TRUE(isnan(cimagl(tan_result)));
/third_party/FreeBSD/lib/msun/ld128/
Dk_expl.h308 y = cimagl(z); in __ldexp_cexpl()
/third_party/musl/libc-test/src/api/
Dcomplex.c45 {long double(*p)(long double complex) = cimagl;} in f()
/third_party/musl/
Dlibc.map.txt442 cimagl;
Dmusl_src.gni299 "src/complex/cimagl.c",