Home
last modified time | relevance | path

Searched refs:COMPLEXTF_IMAGINARY (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/
H A Ddivtc3.c33 COMPLEXTF_IMAGINARY(z) = in __divtc3()
35 if (crt_isnan(COMPLEXTF_REAL(z)) && crt_isnan(COMPLEXTF_IMAGINARY(z))) { in __divtc3()
38 COMPLEXTF_IMAGINARY(z) = crt_copysigntf(CRT_INFINITY, __c) * __b; in __divtc3()
44 COMPLEXTF_IMAGINARY(z) = CRT_INFINITY * (__b * __c - __a * __d); in __divtc3()
50 COMPLEXTF_IMAGINARY(z) = 0.0 * (__b * __c - __a * __d); in __divtc3()
H A Dmultc3.c29 COMPLEXTF_IMAGINARY(z) = ad + bc; in __multc3()
30 if (crt_isnan(COMPLEXTF_REAL(z)) && crt_isnan(COMPLEXTF_IMAGINARY(z))) { in __multc3()
64 COMPLEXTF_IMAGINARY(z) = CRT_INFINITY * (a * d + b * c); in __multc3()
H A Dint_types.h266 #define COMPLEXTF_IMAGINARY(x) __imag__(x) macro
272 #define COMPLEXTF_IMAGINARY(x) (x).imaginary macro