Home
last modified time | relevance | path

Searched refs:CMPLXL (Results 1 – 6 of 6) sorted by relevance

/bionic/libm/upstream-freebsd/lib/msun/src/
Ds_csqrtl.c61 return (CMPLXL(0, b)); in csqrtl()
63 return (CMPLXL(INFINITY, b)); in csqrtl()
66 return (CMPLXL(a, t)); /* return NaN + NaN i */ in csqrtl()
76 return (CMPLXL(fabsl(b - b), copysignl(a, b))); in csqrtl()
78 return (CMPLXL(a, copysignl(b - b, b))); in csqrtl()
97 result = CMPLXL(t, b / (2 * t)); in csqrtl()
100 result = CMPLXL(fabsl(b) / (2 * t), copysignl(t, b)); in csqrtl()
Ds_conjl.c37 return (CMPLXL(creall(z), -cimagl(z))); in conjl()
Ds_cprojl.c42 return (CMPLXL(INFINITY, copysignl(0.0, cimagl(z)))); in cprojl()
Dmath_private.h487 #ifndef CMPLXL
489 CMPLXL(long double x, long double y) in CMPLXL() function
/bionic/libm/include/
Dcomplex.h53 #define CMPLXL(x, y) ((long double complex){ x, y }) macro
57 #define CMPLXL(x, y) __builtin_complex((long double)(x), (long double)(y)) macro
/bionic/libm/upstream-freebsd/lib/msun/ld128/
Dk_expl.h325 return (CMPLXL(cos(y) * exp_x * scale1 * scale2, in __ldexp_cexpl()