/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/decimaltestdata/ |
D | extra.decTest | 866 bool0630 isnan 0E-2000 -> 0 867 bool0631 isnan -0E-2000 -> 0 868 bool0632 isnan 0E-1008 -> 0 869 bool0633 isnan -0E-1008 -> 0 870 bool0634 isnan 0E-1007 -> 0 871 bool0635 isnan -0E-1007 -> 0 872 bool0636 isnan 0E-1006 -> 0 873 bool0637 isnan -0E-1006 -> 0 874 bool0638 isnan 0E-1000 -> 0 875 bool0639 isnan -0E-1000 -> 0 [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_math.py | 153 self.assertTrue(math.isnan(math.acos(NAN))) 163 self.assertTrue(math.isnan(math.acosh(NAN))) 172 self.assertTrue(math.isnan(math.asin(NAN))) 181 self.assertTrue(math.isnan(math.asinh(NAN))) 190 self.assertTrue(math.isnan(math.atan(NAN))) 201 self.assertTrue(math.isnan(math.atanh(NAN))) 218 self.assertTrue(math.isnan(math.atan2(0., NAN))) 226 self.assertTrue(math.isnan(math.atan2(-0., NAN))) 234 self.assertTrue(math.isnan(math.atan2(INF, NAN))) 242 self.assertTrue(math.isnan(math.atan2(NINF, NAN))) [all …]
|
D | test_cmath.py | 76 if math.isnan(a): 77 if math.isnan(b): 405 self.assertTrue(math.isnan(phase(z))) 418 self.assertTrue(math.isnan(abs(complex(NAN, -2.3)))) 419 self.assertTrue(math.isnan(abs(complex(NAN, -0.0)))) 420 self.assertTrue(math.isnan(abs(complex(NAN, 0.0)))) 421 self.assertTrue(math.isnan(abs(complex(NAN, 2.3)))) 424 self.assertTrue(math.isnan(abs(complex(-2.3, NAN)))) 425 self.assertTrue(math.isnan(abs(complex(-0.0, NAN)))) 426 self.assertTrue(math.isnan(abs(complex(0.0, NAN)))) [all …]
|
D | test_float.py | 6 from math import isinf, isnan, copysign, ldexp 233 self.assertTrue(isnan(pow_op(-INF, NAN))) 234 self.assertTrue(isnan(pow_op(-2.0, NAN))) 235 self.assertTrue(isnan(pow_op(-1.0, NAN))) 236 self.assertTrue(isnan(pow_op(-0.5, NAN))) 237 self.assertTrue(isnan(pow_op(-0.0, NAN))) 238 self.assertTrue(isnan(pow_op(0.0, NAN))) 239 self.assertTrue(isnan(pow_op(0.5, NAN))) 240 self.assertTrue(isnan(pow_op(2.0, NAN))) 241 self.assertTrue(isnan(pow_op(INF, NAN))) [all …]
|
D | ieee754.txt | 36 The math module's ``isnan`` and ``isinf`` functions can be used to detect INF 38 >>> isinf(INF), isinf(NINF), isnan(NAN)
|
/device/linaro/bootloader/edk2/StdLib/LibC/Math/ |
D | w_pow.c | 36 if(_LIB_VERSION == _IEEE_|| isnan(y)) return z; in pow() 37 if(isnan(x)) { in pow() 52 if(isnan(z)) in pow()
|
D | w_fmod.c | 34 if(_LIB_VERSION == _IEEE_ ||isnan(y)||isnan(x)) return z; in fmod()
|
D | w_atan2.c | 34 if(_LIB_VERSION == _IEEE_||isnan(x)||isnan(y)) return z; in atan2()
|
D | w_sqrt.c | 33 if(_LIB_VERSION == _IEEE_ || isnan(x)) return z; in sqrt()
|
D | w_asin.c | 35 if(_LIB_VERSION == _IEEE_ || isnan(x)) return z; in asin()
|
D | w_acos.c | 34 if(_LIB_VERSION == _IEEE_ || isnan(x)) return z; in acos()
|
D | w_cosh.c | 33 if(_LIB_VERSION == _IEEE_ || isnan(x)) return z; in cosh()
|
D | w_log.c | 34 if(_LIB_VERSION == _IEEE_ || isnan(x) || x > 0.0) return z; in log()
|
D | w_log10.c | 34 if(_LIB_VERSION == _IEEE_ || isnan(x)) return z; in log10()
|
D | w_log2.c | 34 if(_LIB_VERSION == _IEEE_ || isnan(x)) return z; in log2()
|
/device/google/contexthub/firmware/lib/libm/ |
D | wf_fmod.c | 36 if(_LIB_VERSION == _IEEE_ ||isnan(y)||isnan(x)) return z;
|
D | wf_pow.c | 36 if(_LIB_VERSION == _IEEE_|| isnan(y)) return z; 37 if(isnan(x)) { 100 if(isnan(z)) {
|
D | wf_asin.c | 38 if(_LIB_VERSION == _IEEE_ || isnan(x)) return z;
|
/device/linaro/bootloader/edk2/StdLib/Include/ |
D | math.h | 84 #define isnan(__x) __isnan(__x) macro 86 #define isnan(__x) __fpmacro_unary_floating(isnan, __x) macro
|
/device/linaro/bootloader/edk2/StdLib/LibC/Main/ |
D | isnand_ieee754.c | 52 __weak_alias(isnan,__isnand) in __weak_alias() argument
|
/device/google/bonito/json-c/ |
D | math_compat.h | 9 #define isnan(x) _isnan(x) macro
|
/device/google/crosshatch/json-c/ |
D | math_compat.h | 9 #define isnan(x) _isnan(x) macro
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/ |
D | pymath.h | 95 #define Py_IS_NAN(X) isnan(X)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/ |
D | pymath.h | 95 #define Py_IS_NAN(X) isnan(X)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | fractions.py | 180 if math.isnan(f) or math.isinf(f): 535 if math.isnan(b) or math.isinf(b): 565 if math.isnan(other) or math.isinf(other):
|