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

References

projects/compiler-rt/lib/builtins/divdc3.c
   23   double __logbw = __compiler_rt_logb(crt_fmax(crt_fabs(__c), crt_fabs(__d)));
   27     __d = crt_scalbn(__d, -__ilogbw);
   27     __d = crt_scalbn(__d, -__ilogbw);
   29   double __denom = __c * __c + __d * __d;
   29   double __denom = __c * __c + __d * __d;
   31   COMPLEX_REAL(z) = crt_scalbn((__a * __c + __b * __d) / __denom, -__ilogbw);
   33       crt_scalbn((__b * __c - __a * __d) / __denom, -__ilogbw);
   39                crt_isfinite(__d)) {
   42       COMPLEX_REAL(z) = CRT_INFINITY * (__a * __c + __b * __d);
   43       COMPLEX_IMAGINARY(z) = CRT_INFINITY * (__b * __c - __a * __d);
   47       __d = crt_copysign(crt_isinf(__d) ? 1.0 : 0.0, __d);
   47       __d = crt_copysign(crt_isinf(__d) ? 1.0 : 0.0, __d);
   47       __d = crt_copysign(crt_isinf(__d) ? 1.0 : 0.0, __d);
   48       COMPLEX_REAL(z) = 0.0 * (__a * __c + __b * __d);
   49       COMPLEX_IMAGINARY(z) = 0.0 * (__b * __c - __a * __d);