Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/compiler-rt/lib/builtins/
Ddivxc3.c26 __c = crt_scalbnl(__c, -__ilogbw); in __divxc3()
27 __d = crt_scalbnl(__d, -__ilogbw); in __divxc3()
31 COMPLEX_REAL(z) = crt_scalbnl((__a * __c + __b * __d) / __denom, -__ilogbw); in __divxc3()
33 crt_scalbnl((__b * __c - __a * __d) / __denom, -__ilogbw); in __divxc3()
Dint_math.h93 #define crt_scalbnl(x, y) scalbnl((x), (y)) macro
95 #define crt_scalbnl(x, y) __builtin_scalbnl((x), (y)) macro
Dfp_lib.h408 return crt_scalbnl(x, y); in __compiler_rt_scalbnl()