Searched refs:crt_scalbnf (Results 1 – 4 of 4) sorted by relevance
/external/llvm-project/compiler-rt/lib/builtins/ |
D | divsc3.c | 26 __c = crt_scalbnf(__c, -__ilogbw); in __divsc3() 27 __d = crt_scalbnf(__d, -__ilogbw); in __divsc3() 31 COMPLEX_REAL(z) = crt_scalbnf((__a * __c + __b * __d) / __denom, -__ilogbw); in __divsc3() 33 crt_scalbnf((__b * __c - __a * __d) / __denom, -__ilogbw); in __divsc3()
|
D | int_math.h | 98 #define crt_scalbnf(x, y) scalbnf((x), (y)) macro 102 #define crt_scalbnf(x, y) __builtin_scalbnf((x), (y)) macro
|
/external/compiler-rt/lib/builtins/ |
D | divsc3.c | 28 __c = crt_scalbnf(__c, -__ilogbw); in __divsc3() 29 __d = crt_scalbnf(__d, -__ilogbw); in __divsc3() 33 COMPLEX_REAL(z) = crt_scalbnf((__a * __c + __b * __d) / __denom, -__ilogbw); in __divsc3() 34 COMPLEX_IMAGINARY(z) = crt_scalbnf((__b * __c - __a * __d) / __denom, -__ilogbw); in __divsc3()
|
D | int_math.h | 106 #define crt_scalbnf(x, y) scalbnf((x), (y)) macro 110 #define crt_scalbnf(x, y) __builtin_scalbnf((x), (y)) macro
|