Home
last modified time | relevance | path

Searched refs:is_normal (Results 1 - 6 of 6) sorted by relevance

/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/
H A Dangle_format.py254 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)
/third_party/json/tests/thirdparty/doctest/
H A Ddoctest.h571 is_normal = 2 * is_require, enumerator
572 is_throws = 2 * is_normal,
591 DT_WARN = is_normal | is_warn,
592 DT_CHECK = is_normal | is_check,
593 DT_REQUIRE = is_normal | is_require,
595 DT_WARN_FALSE = is_normal | is_false | is_warn,
596 DT_CHECK_FALSE = is_normal | is_false | is_check,
597 DT_REQUIRE_FALSE = is_normal | is_false | is_require,
619 DT_WARN_EQ = is_normal | is_eq | is_warn,
620 DT_CHECK_EQ = is_normal | is_e
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/metal/
H A Dgen_mtl_format_table.py220 is_normal = 'true' if 'NORM' in src_format else 'false'
222 is_normal), 0, "false"
/third_party/ltp/tools/sparse/sparse-src/
H A Dpre-process.c2175 int is_normal = 1; in handle_preprocessor_line() local
2185 is_normal = sym->normal; in handle_preprocessor_line()
2196 if (is_normal) { in handle_preprocessor_line()
/third_party/python/Lib/test/
H A Dtest_decimal.py220 'isnormal':'is_normal',
272 'is_normal',
2267 self.assertIs(z.is_normal(context=None), False)
2814 self.assertFalse(D("0.01").is_normal(context=xc))
3235 d = c.is_normal(Decimal(10))
3236 self.assertEqual(c.is_normal(10), d)
3237 self.assertRaises(TypeError, c.is_normal, '10')
4440 # is_normal
4441 self.assertIs(Decimal("0.01").is_normal(), False)
5287 for attr in ['exp', 'is_normal', 'is_subnorma
[all...]
/third_party/python/Lib/
H A D_pydecimal.py3145 def is_normal(self, context=None): member in Decimal
4566 def is_normal(self, a): member in Context
4573 >>> c.is_normal(Decimal('2.50'))
4575 >>> c.is_normal(Decimal('0.1E-999'))
4577 >>> c.is_normal(Decimal('0.00'))
4579 >>> c.is_normal(Decimal('-Inf'))
4581 >>> c.is_normal(Decimal('NaN'))
4583 >>> c.is_normal(1)
4587 return a.is_normal(context=self)

Completed in 21 milliseconds