Home | History | Annotate | Download | only in lib

Lines Matching refs:__c

23 __mulxc3(long double __a, long double __b, long double __c, long double __d)
25 long double __ac = __a * __c;
28 long double __bc = __b * __c;
39 if (crt_isnan(__c))
40 __c = crt_copysignl(0, __c);
45 if (crt_isinf(__c) || crt_isinf(__d))
47 __c = crt_copysignl(crt_isinf(__c) ? 1 : 0, __c);
62 if (crt_isnan(__c))
63 __c = crt_copysignl(0, __c);
70 __real__ z = CRT_INFINITY * (__a * __c - __b * __d);
71 __imag__ z = CRT_INFINITY * (__a * __d + __b * __c);