HomeSort by relevance Sort by last modified time
    Searched refs:crt_scalbnl (Results 1 - 3 of 3) sorted by null

  /external/compiler-rt/lib/builtins/
divtc3.c 28 __c = crt_scalbnl(__c, -__ilogbw);
29 __d = crt_scalbnl(__d, -__ilogbw);
33 __real__ z = crt_scalbnl((__a * __c + __b * __d) / __denom, -__ilogbw);
34 __imag__ z = crt_scalbnl((__b * __c - __a * __d) / __denom, -__ilogbw);
divxc3.c 29 __c = crt_scalbnl(__c, -__ilogbw);
30 __d = crt_scalbnl(__d, -__ilogbw);
34 COMPLEX_REAL(z) = crt_scalbnl((__a * __c + __b * __d) / __denom, -__ilogbw);
35 COMPLEX_IMAGINARY(z) = crt_scalbnl((__b * __c - __a * __d) / __denom, -__ilogbw);
int_math.h 107 #define crt_scalbnl(x, y) scalbnl((x), (y)) macro
111 #define crt_scalbnl(x, y) __builtin_scalbnl((x), (y)) macro

Completed in 37 milliseconds