Lines Matching refs:__c
21 __muldc3(double __a, double __b, double __c, double __d) in __muldc3() argument
23 double __ac = __a * __c; in __muldc3()
26 double __bc = __b * __c; in __muldc3()
37 if (crt_isnan(__c)) in __muldc3()
38 __c = crt_copysign(0, __c); in __muldc3()
43 if (crt_isinf(__c) || crt_isinf(__d)) in __muldc3()
45 __c = crt_copysign(crt_isinf(__c) ? 1 : 0, __c); in __muldc3()
60 if (crt_isnan(__c)) in __muldc3()
61 __c = crt_copysign(0, __c); in __muldc3()
68 __real__ z = CRT_INFINITY * (__a * __c - __b * __d); in __muldc3()
69 __imag__ z = CRT_INFINITY * (__a * __d + __b * __c); in __muldc3()