Searched refs:isnan (Results 1 - 25 of 30) sorted by relevance

12

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Math/
H A Dw_fmod.c34 if(_LIB_VERSION == _IEEE_ ||isnan(y)||isnan(x)) return z;
H A Dw_atan2.c34 if(_LIB_VERSION == _IEEE_||isnan(x)||isnan(y)) return z;
H A Dw_pow.c36 if(_LIB_VERSION == _IEEE_|| isnan(y)) return z;
37 if(isnan(x)) {
52 if(isnan(z))
H A Dw_acos.c34 if(_LIB_VERSION == _IEEE_ || isnan(x)) return z;
H A Dw_asin.c35 if(_LIB_VERSION == _IEEE_ || isnan(x)) return z;
H A Dw_cosh.c33 if(_LIB_VERSION == _IEEE_ || isnan(x)) return z;
H A Dw_log.c34 if(_LIB_VERSION == _IEEE_ || isnan(x) || x > 0.0) return z;
H A Dw_log10.c34 if(_LIB_VERSION == _IEEE_ || isnan(x)) return z;
H A Dw_log2.c34 if(_LIB_VERSION == _IEEE_ || isnan(x)) return z;
H A Dw_sqrt.c33 if(_LIB_VERSION == _IEEE_ || isnan(x)) return z;
/vbox/src/libs/libxml2-2.6.31/include/
H A Dwin32config.h52 #ifndef isnan
53 #define isnan(d) (_isnan(d)) macro
73 #ifndef isnan
74 static int isnan (double d) { function
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Main/
H A Disnand_ieee754.c52 __weak_alias(isnan,__isnand)
56 * 7.12.3.4 isnan - test for a NaN
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/
H A Dmath.h82 /* C99 7.12.3.4 int isnan(real-floating x) */
84 #define isnan(__x) __isnan(__x) macro
86 #define isnan(__x) __fpmacro_unary_floating(isnan, __x) macro
/vbox/src/recompiler/fpu/
H A Dsoftfloat-native.h37 #define unordered(x, y) (isnan(x) || isnan(y))
69 #ifndef isnan
70 # define isnan(x) \ macro
84 static inline int isinf_f (float x) { return isnan (x - x); }
85 static inline int isinf_d (double x) { return isnan (x - x); }
86 static inline int isinf_ld (long double x) { return isnan (x - x); }
/vbox/src/libs/libxml2-2.6.31/
H A Dtrionan.c371 #if (defined(TRIO_COMPILER_SUPPORTS_C99) && defined(isnan)) \
374 * C99 defines isnan() as a macro. UNIX95 defines isnan() as a
379 return isnan(number);
/vbox/include/iprt/nocrt/
H A Dmath.h137 #define isnan(x) \ macro
139 : (sizeof (x) == sizeof (double)) ? isnan(x) \
160 #define isunordered(x, y) (isnan(x) || isnan(y))
271 /*int isnan(double) __pure2;*/
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/wined3d/
H A Dshader.c627 if (isinf(value[0]) || isnan(value[0]) || isinf(value[1]) || isnan(value[1])
628 || isinf(value[2]) || isnan(value[2]) || isinf(value[3]) || isnan(value[3]))
1822 if (isinf(value[0]) || isnan(value[0]) || isinf(value[1]) || isnan(value[1])
1823 || isinf(value[2]) || isnan(value[2]) || isinf(value[3]) || isnan(value[3]))
/vbox/src/VBox/Devices/Graphics/shaderlib/libWineStub/include/wine/
H A Dport.h273 int isnan(double x);
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/wine/
H A Dport.h277 int isnan(double x);
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/vbox/libWineStub/include/wine/
H A Dport.h273 int isnan(double x);
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/vbox/libWineStub/include/wine/
H A Dport.h282 int isnan(double x);
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/wine/
H A Dport.h273 int isnan(double x);
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/vbox/libWineStub/include/wine/
H A Dport.h273 int isnan(double x);
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Python/PyMod-2.7.1/Include/
H A Dpyport.h459 #define _Py_SET_EDOM_FOR_NAN(X) if (isnan(X)) errno = EDOM;
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Python/PyMod-2.7.2/Include/
H A Dpyport.h472 #define _Py_SET_EDOM_FOR_NAN(X) if (isnan(X)) errno = EDOM;

Completed in 130 milliseconds

12