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

References

projects/compiler-rt/lib/builtins/multc3.c
   20   long double ac = a * c;
   23   long double bc = b * c;
   32       if (crt_isnan(c))
   33         c = crt_copysignl(0, c);
   33         c = crt_copysignl(0, c);
   38     if (crt_isinf(c) || crt_isinf(d)) {
   39       c = crt_copysignl(crt_isinf(c) ? 1 : 0, c);
   39       c = crt_copysignl(crt_isinf(c) ? 1 : 0, c);
   39       c = crt_copysignl(crt_isinf(c) ? 1 : 0, c);
   53       if (crt_isnan(c))
   54         c = crt_copysignl(0, c);
   54         c = crt_copysignl(0, c);
   60       __real__ z = CRT_INFINITY * (a * c - b * d);
   61       __imag__ z = CRT_INFINITY * (a * d + b * c);