Home | History | Annotate | Download | only in lib

Lines Matching refs:__c

21 __mulsc3(float __a, float __b, float __c, float __d)
23 float __ac = __a * __c;
26 float __bc = __b * __c;
37 if (crt_isnan(__c))
38 __c = crt_copysignf(0, __c);
43 if (crt_isinf(__c) || crt_isinf(__d))
45 __c = crt_copysignf(crt_isinf(__c) ? 1 : 0, __c);
60 if (crt_isnan(__c))
61 __c = crt_copysignf(0, __c);
68 __real__ z = CRT_INFINITY * (__a * __c - __b * __d);
69 __imag__ z = CRT_INFINITY * (__a * __d + __b * __c);