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

References

projects/compiler-rt/lib/builtins/mulxc3.c
   22   long double __ac = __a * __c;
   25   long double __bc = __b * __c;
   34       if (crt_isnan(__c))
   35         __c = crt_copysignl(0, __c);
   35         __c = crt_copysignl(0, __c);
   40     if (crt_isinf(__c) || crt_isinf(__d)) {
   41       __c = crt_copysignl(crt_isinf(__c) ? 1 : 0, __c);
   41       __c = crt_copysignl(crt_isinf(__c) ? 1 : 0, __c);
   41       __c = crt_copysignl(crt_isinf(__c) ? 1 : 0, __c);
   55       if (crt_isnan(__c))
   56         __c = crt_copysignl(0, __c);
   56         __c = crt_copysignl(0, __c);
   62       COMPLEX_REAL(z) = CRT_INFINITY * (__a * __c - __b * __d);
   63       COMPLEX_IMAGINARY(z) = CRT_INFINITY * (__a * __d + __b * __c);