Lines Matching refs:__d
21 double __d) { in __divdc3() argument
24 crt_fabs(__d))); in __divdc3()
28 __d = __compiler_rt_scalbn(__d, -__ilogbw); in __divdc3()
30 double __denom = __c * __c + __d * __d; in __divdc3()
33 __compiler_rt_scalbn((__a * __c + __b * __d) / __denom, -__ilogbw); in __divdc3()
35 __compiler_rt_scalbn((__b * __c - __a * __d) / __denom, -__ilogbw); in __divdc3()
41 crt_isfinite(__d)) { in __divdc3()
44 COMPLEX_REAL(z) = CRT_INFINITY * (__a * __c + __b * __d); in __divdc3()
45 COMPLEX_IMAGINARY(z) = CRT_INFINITY * (__b * __c - __a * __d); in __divdc3()
49 __d = crt_copysign(crt_isinf(__d) ? 1.0 : 0.0, __d); in __divdc3()
50 COMPLEX_REAL(z) = 0.0 * (__a * __c + __b * __d); in __divdc3()
51 COMPLEX_IMAGINARY(z) = 0.0 * (__b * __c - __a * __d); in __divdc3()