HomeSort by relevance Sort by last modified time
    Searched full:crt_copysign (Results 1 - 5 of 5) sorted by null

  /external/compiler-rt/lib/builtins/
muldc3.c 35 __a = crt_copysign(crt_isinf(__a) ? 1 : 0, __a);
36 __b = crt_copysign(crt_isinf(__b) ? 1 : 0, __b);
38 __c = crt_copysign(0, __c);
40 __d = crt_copysign(0, __d);
45 __c = crt_copysign(crt_isinf(__c) ? 1 : 0, __c);
46 __d = crt_copysign(crt_isinf(__d) ? 1 : 0, __d);
48 __a = crt_copysign(0, __a);
50 __b = crt_copysign(0, __b);
57 __a = crt_copysign(0, __a);
59 __b = crt_copysign(0, __b)
    [all...]
divdc3.c 39 __real__ z = crt_copysign(CRT_INFINITY, __c) * __a;
40 __imag__ z = crt_copysign(CRT_INFINITY, __c) * __b;
45 __a = crt_copysign(crt_isinf(__a) ? 1.0 : 0.0, __a);
46 __b = crt_copysign(crt_isinf(__b) ? 1.0 : 0.0, __b);
53 __c = crt_copysign(crt_isinf(__c) ? 1.0 : 0.0, __c);
54 __d = crt_copysign(crt_isinf(__d) ? 1.0 : 0.0, __d);
int_math.h 47 #define crt_copysign(x, y) __builtin_copysign((x), (y)) macro
  /external/compiler-rt/lib/builtins/ppc/
divtc3.c 13 (x).s.hi = crt_copysign(crt_isinf((x).s.hi) ? 1.0 : 0.0, (x).s.hi); \
62 real.s.hi = crt_copysign(CRT_INFINITY,cDD.s.hi) * aDD.s.hi;
64 imag.s.hi = crt_copysign(CRT_INFINITY,cDD.s.hi) * bDD.s.hi;
84 real.s.hi = crt_copysign(0.0,(aDD.s.hi*cDD.s.hi + bDD.s.hi*dDD.s.hi));
86 imag.s.hi = crt_copysign(0.0,(bDD.s.hi*cDD.s.hi - aDD.s.hi*dDD.s.hi));
multc3.c 9 (x).s.hi = crt_copysign(crt_isinf((x).s.hi) ? 1.0 : 0.0, (x).s.hi); \
15 (x).s.hi = crt_copysign(0.0, (x).s.hi); \

Completed in 1104 milliseconds