Home
last modified time | relevance | path

Searched refs:cimagf (Results 1 – 25 of 29) sorted by relevance

12

/third_party/musl/src/complex/
Dcacoshf.c5 int zineg = signbit(cimagf(z)); in cacoshf()
8 if (zineg) return CMPLXF(cimagf(z), -crealf(z)); in cacoshf()
9 else return CMPLXF(-cimagf(z), crealf(z)); in cacoshf()
Dcimagf.c3 float (cimagf)(float complex z)
5 return cimagf(z);
Dcprojf.c5 if (isinf(crealf(z)) || isinf(cimagf(z))) in cprojf()
6 return CMPLXF(INFINITY, copysignf(0.0, cimagf(z))); in cprojf()
Dcasinhf.c5 z = casinf(CMPLXF(-cimagf(z), crealf(z))); in casinhf()
6 return CMPLXF(cimagf(z), -crealf(z)); in casinhf()
Dctanf.c5 z = ctanhf(CMPLXF(-cimagf(z), crealf(z))); in ctanf()
6 return CMPLXF(cimagf(z), -crealf(z)); in ctanf()
Dcsinf.c5 z = csinhf(CMPLXF(-cimagf(z), crealf(z))); in csinf()
6 return CMPLXF(cimagf(z), -crealf(z)); in csinf()
Dcatanhf.c5 z = catanf(CMPLXF(-cimagf(z), crealf(z))); in catanhf()
6 return CMPLXF(cimagf(z), -crealf(z)); in catanhf()
Dcasinf.c11 y = cimagf(z); in casinf()
14 return CMPLXF(cimagf(r), -crealf(r)); in casinf()
Dcsinhf.c41 y = cimagf(z); in csinhf()
63 return CMPLXF(crealf(z) * copysignf(1, x), cimagf(z)); in csinhf()
Dccoshf.c41 y = cimagf(z); in ccoshf()
63 return CMPLXF(crealf(z), cimagf(z) * copysignf(1, x)); in ccoshf()
Dcargf.c5 return atan2f(cimagf(z), crealf(z)); in cargf()
Dcabsf.c5 return hypotf(crealf(z), cimagf(z)); in cabsf()
Dconjf.c5 return CMPLXF(crealf(z), -cimagf(z)); in conjf()
Dccosf.c5 return ccoshf(CMPLXF(-cimagf(z), crealf(z))); in ccosf()
Dcacosf.c10 return CMPLXF(float_pi_2 - crealf(z), -cimagf(z)); in cacosf()
Dcexpf.c40 y = cimagf(z); in cexpf()
D__cexpf.c57 y = cimagf(z); in __ldexp_cexpf()
Dcsqrtf.c41 float a = crealf(z), b = cimagf(z); in csqrtf()
Dcatanf.c90 y = cimagf(z); in catanf()
/third_party/musl/ndk_musl_include/
Dcomplex.h89 float cimagf(float complex);
113 #define cimagf(x) __CIMAG(x, float) macro
/third_party/musl/include/
Dcomplex.h89 float cimagf(float complex);
113 #define cimagf(x) __CIMAG(x, float) macro
/third_party/musl/porting/liteos_a/kernel/include/
Dcomplex.h89 float cimagf(float complex);
113 #define cimagf(x) __CIMAG(x, float) macro
/third_party/musl/porting/liteos_m/kernel/include/
Dcomplex.h89 float cimagf(float complex);
113 #define cimagf(x) __CIMAG(x, float) macro
/third_party/musl/porting/uniproton/kernel/include/
Dcomplex.h89 float cimagf(float complex);
113 #define cimagf(x) __CIMAG(x, float) macro
/third_party/musl/libc-test/src/functionalext/supplement/math/math_gtest/
Dcomplex_test.cpp374 EXPECT_EQ(0.0f, cimagf(0));
706 EXPECT_TRUE(cimagf(tan_result) == 0.0f);
719 EXPECT_TRUE(isnan(cimagf(tan_result)));

12