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

References

projects/compiler-rt/lib/builtins/muldc3.c
   20   double __ac = __a * __c;
   23   double __bc = __b * __c;
   32       if (crt_isnan(__c))
   33         __c = crt_copysign(0, __c);
   33         __c = crt_copysign(0, __c);
   38     if (crt_isinf(__c) || crt_isinf(__d)) {
   39       __c = crt_copysign(crt_isinf(__c) ? 1 : 0, __c);
   39       __c = crt_copysign(crt_isinf(__c) ? 1 : 0, __c);
   39       __c = crt_copysign(crt_isinf(__c) ? 1 : 0, __c);
   53       if (crt_isnan(__c))
   54         __c = crt_copysign(0, __c);
   54         __c = crt_copysign(0, __c);
   60       COMPLEX_REAL(z) = CRT_INFINITY * (__a * __c - __b * __d);
   61       COMPLEX_IMAGINARY(z) = CRT_INFINITY * (__a * __d + __b * __c);