Searched refs:CRT_INFINITY (Results 1 – 11 of 11) sorted by relevance
/external/compiler-rt/lib/builtins/ |
D | divtc3.c | 39 __real__ z = crt_copysignl(CRT_INFINITY, __c) * __a; in __divtc3() 40 __imag__ z = crt_copysignl(CRT_INFINITY, __c) * __b; in __divtc3() 47 __real__ z = CRT_INFINITY * (__a * __c + __b * __d); in __divtc3() 48 __imag__ z = CRT_INFINITY * (__b * __c - __a * __d); in __divtc3()
|
D | divxc3.c | 40 COMPLEX_REAL(z) = crt_copysignl(CRT_INFINITY, __c) * __a; in __divxc3() 41 COMPLEX_IMAGINARY(z) = crt_copysignl(CRT_INFINITY, __c) * __b; in __divxc3() 48 COMPLEX_REAL(z) = CRT_INFINITY * (__a * __c + __b * __d); in __divxc3() 49 COMPLEX_IMAGINARY(z) = CRT_INFINITY * (__b * __c - __a * __d); in __divxc3()
|
D | divdc3.c | 39 COMPLEX_REAL(z) = crt_copysign(CRT_INFINITY, __c) * __a; in __divdc3() 40 COMPLEX_IMAGINARY(z) = crt_copysign(CRT_INFINITY, __c) * __b; in __divdc3() 47 COMPLEX_REAL(z) = CRT_INFINITY * (__a * __c + __b * __d); in __divdc3() 48 COMPLEX_IMAGINARY(z) = CRT_INFINITY * (__b * __c - __a * __d); in __divdc3()
|
D | divsc3.c | 39 COMPLEX_REAL(z) = crt_copysignf(CRT_INFINITY, __c) * __a; in __divsc3() 40 COMPLEX_IMAGINARY(z) = crt_copysignf(CRT_INFINITY, __c) * __b; in __divsc3() 47 COMPLEX_REAL(z) = CRT_INFINITY * (__a * __c + __b * __d); in __divsc3() 48 COMPLEX_IMAGINARY(z) = CRT_INFINITY * (__b * __c - __a * __d); in __divsc3()
|
D | mulsc3.c | 68 COMPLEX_REAL(z) = CRT_INFINITY * (__a * __c - __b * __d); in __mulsc3() 69 COMPLEX_IMAGINARY(z) = CRT_INFINITY * (__a * __d + __b * __c); in __mulsc3()
|
D | mulxc3.c | 70 COMPLEX_REAL(z) = CRT_INFINITY * (__a * __c - __b * __d); in __mulxc3() 71 COMPLEX_IMAGINARY(z) = CRT_INFINITY * (__a * __d + __b * __c); in __mulxc3()
|
D | multc3.c | 63 __real__ z = CRT_INFINITY * (a * c - b * d); in __multc3() 64 __imag__ z = CRT_INFINITY * (a * d + b * c); in __multc3()
|
D | muldc3.c | 68 COMPLEX_REAL(z) = CRT_INFINITY * (__a * __c - __b * __d); in __muldc3() 69 COMPLEX_IMAGINARY(z) = CRT_INFINITY * (__a * __d + __b * __c); in __muldc3()
|
D | int_math.h | 35 #define CRT_INFINITY INFINITY macro 37 #define CRT_INFINITY __builtin_huge_valf() macro
|
/external/compiler-rt/lib/builtins/ppc/ |
D | divtc3.c | 8 #if !defined(CRT_INFINITY) && defined(HUGE_VAL) 9 #define CRT_INFINITY HUGE_VAL macro 57 real.s.hi = crt_copysign(CRT_INFINITY,cDD.s.hi) * aDD.s.hi; in __divtc3() 59 imag.s.hi = crt_copysign(CRT_INFINITY,cDD.s.hi) * bDD.s.hi; in __divtc3() 68 real.s.hi = CRT_INFINITY * (aDD.s.hi*cDD.s.hi + bDD.s.hi*dDD.s.hi); in __divtc3() 70 imag.s.hi = CRT_INFINITY * (bDD.s.hi*cDD.s.hi - aDD.s.hi*dDD.s.hi); in __divtc3()
|
D | multc3.c | 78 real.s.hi = CRT_INFINITY * (aDD.s.hi*cDD.s.hi - bDD.s.hi*dDD.s.hi); in __multc3() 80 imag.s.hi = CRT_INFINITY * (aDD.s.hi*dDD.s.hi + bDD.s.hi*cDD.s.hi); in __multc3()
|