HomeSort by relevance Sort by last modified time
    Searched refs:copysign (Results 1 - 25 of 46) sorted by null

1 2

  /cts/tests/tests/renderscript/src/android/renderscript/cts/
TestCopysign.rs 26 return copysign(inX, inY);
31 return copysign(inX, inY);
36 return copysign(inX, inY);
41 return copysign(inX, inY);
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_copysign.c 17 * copysign(double x, double y)
18 * copysign(x,y) returns a value with the magnitude of x and
26 copysign(double x, double y) function
s_cproj.c 42 return (cpack(INFINITY, copysign(0.0, cimag(z))));
s_csqrt.c 76 return (cpack(fabs(b - b), copysign(a, b)));
78 return (cpack(a, copysign(b - b, b)));
100 result = cpack(fabs(b) / (2 * t), copysign(t, b));
s_scalbn.c 51 if (k > 0x7fe) return huge*copysign(huge,x); /* overflow */
56 return huge*copysign(huge,x); /*overflow*/
57 else return tiny*copysign(tiny,x); /*underflow*/
s_ccosh.c 73 return (cpack(h * cos(y), copysign(h, x) * sin(y)));
77 return (cpack(creal(z), cimag(z) * copysign(1, x)));
95 return (cpack(y - y, copysign(0, x * (y - y))));
105 return (cpack(x * x, copysign(0, x) * y));
106 return (cpack(x * x, copysign(0, (x + x) * y)));
s_csinh.c 73 return (cpack(copysign(h, x) * cos(y), h * sin(y)));
77 return (cpack(creal(z) * copysign(1, x), cimag(z)));
95 return (cpack(copysign(0, x * (y - y)), y - y));
105 return (cpack(x, copysign(0, y)));
s_ctanh.c 106 SET_HIGH_WORD(x, hx - 0x40000000); /* x = copysign(1, x) */
107 return (cpack(x, copysign(0, isinf(y) ? y : sin(y) * cos(y))));
124 return (cpack(copysign(1, x),
s_scalbnl.c 64 return huge*copysign(huge,x); /*overflow*/
65 else return tiny*copysign(tiny,x); /*underflow*/
s_fma.c 84 /* hibits += (int)copysign(1.0, sum.hi * sum.lo) */
121 /* hibits += (int)copysign(1.0, sum.hi * sum.lo) */
238 zs = copysign(DBL_MIN, zs);
  /external/bison/lib/
signbitd.c 46 return copysign (1.0, arg) < 0;
math.in.h 457 _GL_FUNCDECL_SYS (copysign, double, (double x, double y));
459 _GL_CXXALIAS_SYS (copysign, double, (double x, double y));
460 _GL_CXXALIASWARN (copysign); variable
462 # undef copysign macro
464 _GL_WARN_ON_USE (copysign, "copysign is unportable - "
465 "use gnulib module copysign for portability");
478 _GL_WARN_ON_USE (copysign, "copysignl is unportable - "
    [all...]
  /bionic/libm/
fake_long_double.c 27 long double copysignl(long double a1, long double a2) { return copysign(a1, a2); }
  /bionic/libm/upstream-freebsd/lib/msun/bsdsrc/
b_exp.c 47 * copysign(x,y)
103 k=invln2*x+copysign(0.5,x); /* k=NINT(x/ln2) */
148 k = z + copysign(.5, x);
  /external/clang/test/CodeGen/
libcalls-fno-builtin.c 7 double copysign(double,double);
35 double t2(double x, double y) { return copysign(x,y); }
37 // CHECK: copysign
libcall-declarations.c 16 double copysign(double, double);
265 F(llabs), F(copysign), F(copysignf), F(copysignl), F(fabs),
321 // CHECK-NOERRNO: declare double @copysign(double, double) [[NUW]]
536 // CHECK-ERRNO: declare double @copysign(double, double) [[NUW]]
  /external/libcxx/include/support/win32/
math_win32.h 100 _LIBCPP_ALWAYS_INLINE double copysign( double x, double y ) function
  /external/llvm/include/llvm/Transforms/Utils/
VectorUtils.h 39 case Intrinsic::copysign:
156 case LibFunc::copysign:
159 return checkBinaryFloatSignature(*CI, Intrinsic::copysign);
  /external/chromium_org/third_party/skia/include/core/
SkFloatingPoint.h 33 // c++11 contains a 'float copysign(float, float)' function in <cmath>.
37 return copysign(x, y);
  /external/chromium_org/third_party/WebKit/Source/wtf/
MathExtras.h 58 inline double wtf_ceil(double x) { return copysign(ceil(x), x); }
138 inline double copysign(double x, double y) { return _copysign(x, y); } function
  /external/llvm/include/llvm/Target/
TargetLibraryInfo.h 181 /// double copysign(double x, double y);
182 copysign, enumerator in enum:llvm::LibFunc::Func
728 case LibFunc::copysign: case LibFunc::copysignf: case LibFunc::copysignl:
  /external/libcxx/test/numerics/c.math/
cmath.disabled.cpp     [all...]
  /bionic/tests/
math_test.cpp 1074 TEST(math, copysign) {
1075 ASSERT_DOUBLE_EQ(0.0, copysign(0.0, 1.0));
1076 ASSERT_DOUBLE_EQ(-0.0, copysign(0.0, -1.0));
1077 ASSERT_DOUBLE_EQ(2.0, copysign(2.0, 1.0));
1078 ASSERT_DOUBLE_EQ(-2.0, copysign(2.0, -1.0));
    [all...]
  /external/bison/darwin-lib/
math.h 769 _GL_FUNCDECL_SYS (copysign, double, (double x, double y));
771 _GL_CXXALIAS_SYS (copysign, double, (double x, double y));
772 _GL_CXXALIASWARN (copysign);
774 # undef copysign macro
776 _GL_WARN_ON_USE (copysign, "copysign is unportable - "
777 "use gnulib module copysign for portability");
790 _GL_WARN_ON_USE (copysign, "copysignl is unportable - "
    [all...]
  /external/bison/linux-lib/
math.h 769 _GL_FUNCDECL_SYS (copysign, double, (double x, double y));
771 _GL_CXXALIAS_SYS (copysign, double, (double x, double y));
772 _GL_CXXALIASWARN (copysign);
774 # undef copysign macro
776 _GL_WARN_ON_USE (copysign, "copysign is unportable - "
777 "use gnulib module copysign for portability");
790 _GL_WARN_ON_USE (copysign, "copysignl is unportable - "
    [all...]

Completed in 425 milliseconds

1 2