Searched refs:is_snan (Results 1 - 4 of 4) sorted by relevance
/third_party/python/Lib/ |
H A D | _pydecimal.py | 802 if self.is_snan(): 806 elif other.is_snan(): 961 if self.is_snan(): 1623 if self.is_snan(): 3161 def is_snan(self): member in Decimal 3615 if self.is_snan(): 4621 def is_snan(self, a): member in Context 4625 >>> ExtendedContext.is_snan(Decimal('2.50')) 4627 >>> ExtendedContext.is_snan(Decimal('NaN')) 4629 >>> ExtendedContext.is_snan(Decima [all...] |
/third_party/optimized-routines/math/test/rtest/ |
H A D | dotest.c | 432 int is_snan(const uint32 *in, int size) in is_snan() function 451 is_snan(wrapper_get_ieee(ctx, op), size)) { in universal_wrapper()
|
/third_party/python/Lib/test/ |
H A D | test_decimal.py | 223 'issnan':'is_snan', 275 'is_snan', 2810 self.assertRaises(TypeError, D(1).is_snan, context=xc) 3262 d = c.is_snan(Decimal(10)) 3263 self.assertEqual(c.is_snan(10), d) 3264 self.assertRaises(TypeError, c.is_snan, '10') 4477 self.assertTrue(Decimal("snan").is_snan())
|
/third_party/node/deps/v8/src/execution/ppc/ |
H A D | simulator-ppc.cc | 645 static bool is_snan(float input) { in is_snan() function 651 static bool is_snan(double input) { in is_snan() function 4894 if (is_snan(f)) { in ExecuteGeneric() 4907 if (is_snan(b_val)) { in ExecuteGeneric()
|
Completed in 24 milliseconds