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

/external/libcxx/include/support/win32/
H A Dmath_win32.h100 _LIBCPP_ALWAYS_INLINE double copysign( double x, double y ) function
/external/qemu/distrib/sdl-1.2.15/src/video/
H A De_sqrt.h91 double SDL_NAME(copysign)(double x, double y) function
93 double SDL_NAME(copysign)(x,y)
123 if (k > 0x7fe) return huge*SDL_NAME(copysign)(huge,x); /* overflow */
128 return huge*SDL_NAME(copysign)(huge,x); /*overflow*/
129 else return tiny*SDL_NAME(copysign)(tiny,x); /*underflow*/
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DMathExtras.h58 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/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/llvm/include/llvm/Target/
H A DTargetLibraryInfo.h181 /// double copysign(double x, double y);
182 copysign, enumerator in enum:llvm::LibFunc::Func
728 case LibFunc::copysign: case LibFunc::copysignf: case LibFunc::copysignl:

Completed in 637 milliseconds