Home | History | Annotate | Download | only in lib

Lines Matching refs:__c

24 __mulxc3(long double __a, long double __b, long double __c, long double __d)
26 long double __ac = __a * __c;
29 long double __bc = __b * __c;
40 if (isnan(__c))
41 __c = copysignl(0, __c);
46 if (isinf(__c) || isinf(__d))
48 __c = copysignl(isinf(__c) ? 1 : 0, __c);
63 if (isnan(__c))
64 __c = copysignl(0, __c);
71 __real__ z = INFINITY * (__a * __c - __b * __d);
72 __imag__ z = INFINITY * (__a * __d + __b * __c);