Home | History | Annotate | Download | only in lib

Lines Matching refs:__c

22 __mulsc3(float __a, float __b, float __c, float __d)
24 float __ac = __a * __c;
27 float __bc = __b * __c;
38 if (isnan(__c))
39 __c = copysignf(0, __c);
44 if (isinf(__c) || isinf(__d))
46 __c = copysignf(isinf(__c) ? 1 : 0, __c);
61 if (isnan(__c))
62 __c = copysignf(0, __c);
69 __real__ z = INFINITY * (__a * __c - __b * __d);
70 __imag__ z = INFINITY * (__a * __d + __b * __c);