Lines Matching refs:__d
22 __divxc3(long double __a, long double __b, long double __c, long double __d) in __divxc3() argument
25 long double __logbw = crt_logbl(crt_fmaxl(crt_fabsl(__c), crt_fabsl(__d))); in __divxc3()
30 __d = crt_scalbnl(__d, -__ilogbw); in __divxc3()
32 long double __denom = __c * __c + __d * __d; in __divxc3()
34 COMPLEX_REAL(z) = crt_scalbnl((__a * __c + __b * __d) / __denom, -__ilogbw); in __divxc3()
35 COMPLEX_IMAGINARY(z) = crt_scalbnl((__b * __c - __a * __d) / __denom, -__ilogbw); in __divxc3()
44 crt_isfinite(__c) && crt_isfinite(__d)) in __divxc3()
48 COMPLEX_REAL(z) = CRT_INFINITY * (__a * __c + __b * __d); in __divxc3()
49 COMPLEX_IMAGINARY(z) = CRT_INFINITY * (__b * __c - __a * __d); in __divxc3()
55 __d = crt_copysignl(crt_isinf(__d) ? 1 : 0, __d); in __divxc3()
56 COMPLEX_REAL(z) = 0 * (__a * __c + __b * __d); in __divxc3()
57 COMPLEX_IMAGINARY(z) = 0 * (__b * __c - __a * __d); in __divxc3()