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

  /external/compiler-rt/lib/builtins/
divdc3.c 28 __c = crt_scalbn(__c, -__ilogbw);
29 __d = crt_scalbn(__d, -__ilogbw);
33 __real__ z = crt_scalbn((__a * __c + __b * __d) / __denom, -__ilogbw);
34 __imag__ z = crt_scalbn((__b * __c - __a * __d) / __denom, -__ilogbw);
int_math.h 63 #define crt_scalbn(x, y) __builtin_scalbn((x), (y)) macro
  /external/compiler-rt/lib/builtins/ppc/
divtc3.c 35 cDD.s.hi = crt_scalbn(cDD.s.hi, -ilogbw);
36 cDD.s.lo = crt_scalbn(cDD.s.lo, -ilogbw);
37 dDD.s.hi = crt_scalbn(dDD.s.hi, -ilogbw);
38 dDD.s.lo = crt_scalbn(dDD.s.lo, -ilogbw);
48 real.s.hi = crt_scalbn(real.s.hi, -ilogbw);
49 real.s.lo = crt_scalbn(real.s.lo, -ilogbw);
50 imag.s.hi = crt_scalbn(imag.s.hi, -ilogbw);
51 imag.s.lo = crt_scalbn(imag.s.lo, -ilogbw);

Completed in 608 milliseconds