Searched refs:copysign (Results 1 – 4 of 4) sorted by relevance
91 double SDL_NAME(copysign)(double x, double y) in SDL_NAME() argument93 double SDL_NAME(copysign)(x,y) in SDL_NAME()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*/
74 inline double wtf_ceil(double x) { return copysign(ceil(x), x); } in wtf_ceil()124 inline double copysign(double x, double y) { return _copysign(x, y); } in copysign() function
66 y = copysign(y, x); in qemu_rint()
7656 (copysign):17698 * kjs/date_object.cpp: Fix broken copysign macro.17723 copysign for Win32.17744 Add a Win32 implementation of copysign. Put the threads code inside KJS_MULTIPLE_THREADS.