Lines Matching refs:__c
20 COMPILER_RT_ABI Qcomplex __divtc3(fp_t __a, fp_t __b, fp_t __c, fp_t __d) { in __divtc3() argument
23 __compiler_rt_fmaxtf(crt_fabstf(__c), crt_fabstf(__d))); in __divtc3()
26 __c = __compiler_rt_scalbntf(__c, -__ilogbw); in __divtc3()
29 fp_t __denom = __c * __c + __d * __d; in __divtc3()
32 __compiler_rt_scalbntf((__a * __c + __b * __d) / __denom, -__ilogbw); in __divtc3()
34 __compiler_rt_scalbntf((__b * __c - __a * __d) / __denom, -__ilogbw); in __divtc3()
37 COMPLEXTF_REAL(z) = crt_copysigntf(CRT_INFINITY, __c) * __a; in __divtc3()
38 COMPLEXTF_IMAGINARY(z) = crt_copysigntf(CRT_INFINITY, __c) * __b; in __divtc3()
39 } else if ((crt_isinf(__a) || crt_isinf(__b)) && crt_isfinite(__c) && in __divtc3()
43 COMPLEXTF_REAL(z) = CRT_INFINITY * (__a * __c + __b * __d); in __divtc3()
44 COMPLEXTF_IMAGINARY(z) = CRT_INFINITY * (__b * __c - __a * __d); in __divtc3()
47 __c = crt_copysigntf(crt_isinf(__c) ? (fp_t)1.0 : (fp_t)0.0, __c); in __divtc3()
49 COMPLEXTF_REAL(z) = 0.0 * (__a * __c + __b * __d); in __divtc3()
50 COMPLEXTF_IMAGINARY(z) = 0.0 * (__b * __c - __a * __d); in __divtc3()