Home
last modified time | relevance | path

Searched refs:copysign (Results 1 – 4 of 4) sorted by relevance

/external/qemu/distrib/sdl-1.2.12/src/video/
De_sqrt.h91 double SDL_NAME(copysign)(double x, double y) in SDL_NAME() argument
93 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*/
/external/webkit/JavaScriptCore/wtf/
DMathExtras.h74 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
/external/qemu/fpu/
Dsoftfloat-native.c66 y = copysign(y, x); in qemu_rint()
/external/webkit/JavaScriptCore/
DChangeLog-2007-10-147656 (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.