reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

projects/compiler-rt/lib/builtins/divtc3.c
   24       __compiler_rt_logbl(crt_fmaxl(crt_fabsl(__c), crt_fabsl(__d)));
   27     __c = crt_scalbnl(__c, -__ilogbw);
   27     __c = crt_scalbnl(__c, -__ilogbw);
   30   long double __denom = __c * __c + __d * __d;
   30   long double __denom = __c * __c + __d * __d;
   32   COMPLEX_REAL(z) = crt_scalbnl((__a * __c + __b * __d) / __denom, -__ilogbw);
   34       crt_scalbnl((__b * __c - __a * __d) / __denom, -__ilogbw);
   37       COMPLEX_REAL(z) = crt_copysignl(CRT_INFINITY, __c) * __a;
   38       COMPLEX_IMAGINARY(z) = crt_copysignl(CRT_INFINITY, __c) * __b;
   39     } else if ((crt_isinf(__a) || crt_isinf(__b)) && crt_isfinite(__c) &&
   43       COMPLEX_REAL(z) = CRT_INFINITY * (__a * __c + __b * __d);
   44       COMPLEX_IMAGINARY(z) = CRT_INFINITY * (__b * __c - __a * __d);
   47       __c = crt_copysignl(crt_isinf(__c) ? 1.0 : 0.0, __c);
   47       __c = crt_copysignl(crt_isinf(__c) ? 1.0 : 0.0, __c);
   47       __c = crt_copysignl(crt_isinf(__c) ? 1.0 : 0.0, __c);
   49       COMPLEX_REAL(z) = 0.0 * (__a * __c + __b * __d);
   50       COMPLEX_IMAGINARY(z) = 0.0 * (__b * __c - __a * __d);