Searched refs:__ilogbw (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/ |
H A D | divsc3.c | 21 int __ilogbw = 0; in __divsc3() local 25 __ilogbw = (int)__logbw; in __divsc3() 26 __c = __compiler_rt_scalbnf(__c, -__ilogbw); in __divsc3() 27 __d = __compiler_rt_scalbnf(__d, -__ilogbw); in __divsc3() 32 __compiler_rt_scalbnf((__a * __c + __b * __d) / __denom, -__ilogbw); in __divsc3() 34 __compiler_rt_scalbnf((__b * __c - __a * __d) / __denom, -__ilogbw); in __divsc3()
|
H A D | divdc3.c | 22 int __ilogbw = 0; in __divdc3() local 26 __ilogbw = (int)__logbw; in __divdc3() 27 __c = __compiler_rt_scalbn(__c, -__ilogbw); in __divdc3() 28 __d = __compiler_rt_scalbn(__d, -__ilogbw); in __divdc3() 33 __compiler_rt_scalbn((__a * __c + __b * __d) / __denom, -__ilogbw); in __divdc3() 35 __compiler_rt_scalbn((__b * __c - __a * __d) / __denom, -__ilogbw); in __divdc3()
|
H A D | divtc3.c | 21 int __ilogbw = 0; in __divtc3() local 25 __ilogbw = (int)__logbw; in __divtc3() 26 __c = __compiler_rt_scalbntf(__c, -__ilogbw); in __divtc3() 27 __d = __compiler_rt_scalbntf(__d, -__ilogbw); in __divtc3() 32 __compiler_rt_scalbntf((__a * __c + __b * __d) / __denom, -__ilogbw); in __divtc3() 34 __compiler_rt_scalbntf((__b * __c - __a * __d) / __denom, -__ilogbw); in __divtc3()
|
/freebsd/contrib/llvm-project/clang/lib/Headers/ |
H A D | __clang_cuda_complex_builtins.h | 190 int __ilogbw = 0; in __divdc3() local 196 __ilogbw = (int)__logbw; in __divdc3() 197 __c = _SCALBNd(__c, -__ilogbw); in __divdc3() 198 __d = _SCALBNd(__d, -__ilogbw); in __divdc3() 202 __real__(z) = _SCALBNd((__a * __c + __b * __d) / __denom, -__ilogbw); in __divdc3() 203 __imag__(z) = _SCALBNd((__b * __c - __a * __d) / __denom, -__ilogbw); in __divdc3() 226 int __ilogbw = 0; in __divsc3() local 229 __ilogbw = (int)__logbw; in __divsc3() 230 __c = _SCALBNf(__c, -__ilogbw); in __divsc3() 231 __d = _SCALBNf(__d, -__ilogbw); in __divsc3() [all …]
|