/external/angle/src/libANGLE/renderer/ |
D | angle_format.py | 254 is_normal = 'true' if 'NORM' in src_format else 'false' 256 return 'CopyW2XYZ10ToXYZWFloatVertexData<%s, %s, true>' % (is_signed, is_normal) 258 return 'CopyXYZ10ToXYZWFloatVertexData<%s, %s, true>' % (is_signed, is_normal)
|
/external/webrtc/modules/desktop_capture/linux/ |
D | window_list_utils.cc | 94 bool is_normal = in IsDesktopElement() local 96 return !is_normal; in IsDesktopElement()
|
/external/rust/crates/num-traits/src/ |
D | float.rs | 243 fn is_normal(self) -> bool { in is_normal() method 803 Self::is_normal(self) -> bool; 878 Self::is_normal(self) -> bool; 1086 fn is_normal(self) -> bool; in is_normal() method 1841 Self::is_normal(self) -> bool; 1923 FloatCore::is_normal(self) -> bool;
|
/external/angle/src/libANGLE/renderer/metal/ |
D | gen_mtl_format_table.py | 220 is_normal = 'true' if 'NORM' in src_format else 'false' 222 is_normal), 0, "false"
|
/external/rust/crates/num-derive/src/ |
D | lib.rs | 764 fn is_normal(self) -> bool { in float() 765 <#inner_ty as #import::Float>::is_normal(self.0) in float()
|
/external/python/cpython2/Lib/test/ |
D | test_decimal.py | 1935 d = c.is_normal(Decimal(10)) 1936 self.assertEqual(c.is_normal(10), d) 1937 self.assertRaises(TypeError, c.is_normal, '10')
|
/external/mesa3d/src/panfrost/bifrost/ |
D | bifrost_compile.c | 2048 bool is_normal = bi_is_normal_tex(ctx->stage, instr); in emit_tex() local 2053 if (is_normal && is_2d && is_f && !instr->is_shadow && !instr->is_array) in emit_tex()
|
/external/rust/crates/half/src/ |
D | bfloat.rs | 276 pub fn is_normal(self) -> bool { in is_normal() method
|
D | binary16.rs | 585 pub fn is_normal(self) -> bool { in is_normal() method
|
/external/python/cpython3/Lib/test/ |
D | test_decimal.py | 2187 self.assertIs(z.is_normal(context=None), False) 2718 self.assertFalse(D("0.01").is_normal(context=xc)) 3137 d = c.is_normal(Decimal(10)) 3138 self.assertEqual(c.is_normal(10), d) 3139 self.assertRaises(TypeError, c.is_normal, '10') 4309 self.assertIs(Decimal("0.01").is_normal(), False)
|
/external/python/cpython2/Lib/ |
D | decimal.py | 3029 def is_normal(self, context=None): member in Decimal 4376 def is_normal(self, a): member in Context 4397 return a.is_normal(context=self)
|
/external/python/cpython3/Lib/ |
D | _pydecimal.py | 3135 def is_normal(self, context=None): member in Decimal 4552 def is_normal(self, a): member in Context 4573 return a.is_normal(context=self)
|
/external/python/cpython2/Doc/library/ |
D | decimal.rst | 607 .. method:: is_normal() 1246 .. method:: is_normal(x)
|
/external/python/cpython3/Doc/library/ |
D | decimal.rst | 629 .. method:: is_normal(context=None) 1223 .. method:: is_normal(x)
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7a1.rst | 1878 Decimal.is_normal now returns True for numbers with exponent larger than
|
/external/python/cpython3/Misc/ |
D | HISTORY | 14006 - Issue #7099: Decimal.is_normal now returns True for numbers with exponent
|