Lines Matching defs:__d
20 COMPILER_RT_ABI Fcomplex __divsc3(float __a, float __b, float __c, float __d) {
23 __compiler_rt_logbf(__compiler_rt_fmaxX(crt_fabsf(__c), crt_fabsf(__d)));
27 __d = __compiler_rt_scalbnf(__d, -__ilogbw);
29 float __denom = __c * __c + __d * __d;
32 __compiler_rt_scalbnf((__a * __c + __b * __d) / __denom, -__ilogbw);
34 __compiler_rt_scalbnf((__b * __c - __a * __d) / __denom, -__ilogbw);
40 crt_isfinite(__d)) {
43 COMPLEX_REAL(z) = CRT_INFINITY * (__a * __c + __b * __d);
44 COMPLEX_IMAGINARY(z) = CRT_INFINITY * (__b * __c - __a * __d);
48 __d = crt_copysignf(crt_isinf(__d) ? 1 : 0, __d);
49 COMPLEX_REAL(z) = 0 * (__a * __c + __b * __d);
50 COMPLEX_IMAGINARY(z) = 0 * (__b * __c - __a * __d);