Searched defs:copysign (Results 1 - 8 of 8) sorted by relevance

/external/libcxx/include/support/win32/
H A Dmath_win32.h102 _LIBCPP_ALWAYS_INLINE double copysign( double x, double y ) function
/external/flac/libFLAC/
H A Dlpc.c57 #define copysign _copysign macro
59 #define copysign __builtin_copysign macro
62 return (long)(x + copysign (0.5, x));
/external/apache-commons-math/src/main/java/org/apache/commons/math/dfp/
H A DDfp.java2214 * abs(x) = dfp.copysign(x, dfp.one)
2219 public static Dfp copysign(final Dfp x, final Dfp y) { method in class:Dfp
/external/bison/darwin-lib/
H A Dmath.h769 _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 - "
/external/bison/lib/
H A Dmath.in.h457 _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 - "
/external/bison/linux-lib/
H A Dmath.h769 _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 - "
/external/clang/lib/Headers/
H A Dtgmath.h610 // copysign
618 __tg_copysign(double __x, double __y) {return copysign(__x, __y);}
624 #undef copysign macro
625 #define copysign(__x, __y) __tg_copysign(__tg_promote2((__x), (__y))(__x), \ macro
/external/libcxx/test/std/numerics/c.math/
H A Dcmath.pass.cpp72 Ambiguous copysign(Ambiguous, Ambiguous){ return Ambiguous(); } function
788 static_assert((std::is_same<decltype(std::copysign((float)0, (float)0)), float>::value), "");
789 static_assert((std::is_same<decltype(std::copysign((bool)0, (float)0)), double>::value), "");
790 static_assert((std::is_same<decltype(std::copysign((unsigned short)0, (double)0)), double>::value), "");
791 static_assert((std::is_same<decltype(std::copysign((int)0, (long double)0)), long double>::value), "");
792 static_assert((std::is_same<decltype(std::copysign((float)0, (unsigned int)0)), double>::value), "");
793 static_assert((std::is_same<decltype(std::copysign((double)0, (long)0)), double>::value), "");
794 static_assert((std::is_same<decltype(std::copysign((long double)0, (unsigned long)0)), long double>::value), "");
795 static_assert((std::is_same<decltype(std::copysign((int)0, (long long)0)), double>::value), "");
796 static_assert((std::is_same<decltype(std::copysign((in
[all...]

Completed in 337 milliseconds