Home | History | Annotate | Download | only in lib

Lines Matching refs:__c

21 __divsc3(float __a, float __b, float __c, float __d)
24 float __logbw = crt_logbf(crt_fmaxf(crt_fabsf(__c), crt_fabsf(__d)));
28 __c = crt_scalbnf(__c, -__ilogbw);
31 float __denom = __c * __c + __d * __d;
33 __real__ z = crt_scalbnf((__a * __c + __b * __d) / __denom, -__ilogbw);
34 __imag__ z = crt_scalbnf((__b * __c - __a * __d) / __denom, -__ilogbw);
39 __real__ z = crt_copysignf(CRT_INFINITY, __c) * __a;
40 __imag__ z = crt_copysignf(CRT_INFINITY, __c) * __b;
43 crt_isfinite(__c) && crt_isfinite(__d))
47 __real__ z = CRT_INFINITY * (__a * __c + __b * __d);
48 __imag__ z = CRT_INFINITY * (__b * __c - __a * __d);
53 __c = crt_copysignf(crt_isinf(__c) ? 1 : 0, __c);
55 __real__ z = 0 * (__a * __c + __b * __d);
56 __imag__ z = 0 * (__b * __c - __a * __d);