Searched refs:FloatOperation (Results 1 – 8 of 8) sorted by relevance
/external/gemmlowp/meta/ |
D | legacy_operations_common.h | 37 class FloatOperation { 39 FloatOperation(std::int32_t lhs_offset, std::int32_t rhs_offset, in FloatOperation() function
|
D | legacy_multi_thread_gemv.h | 53 class GemvFloatOperation : public FloatOperation { 57 : FloatOperation(lhs_offset, rhs_offset, result_offset) {} in GemvFloatOperation()
|
D | legacy_multi_thread_gemm.h | 91 class GemmFloatOperation : public FloatOperation { 95 : FloatOperation(lhs_offset, rhs_offset, result_offset) {} in GemmFloatOperation()
|
/external/python/cpython3/Lib/test/ |
D | test_decimal.py | 73 C.FloatOperation] if C else None, 76 P.FloatOperation] 2749 FloatOperation = decimal.FloatOperation 2761 self.assertTrue(issubclass(FloatOperation, DecimalException)) 2762 self.assertTrue(issubclass(FloatOperation, TypeError)) 3778 FloatOperation = self.decimal.FloatOperation 3783 self.assertFalse(c.traps[FloatOperation]) 3788 self.assertTrue(c.flags[FloatOperation]) 3792 self.assertTrue(c.flags[FloatOperation]) 3797 self.assertFalse(c.flags[FloatOperation]) [all …]
|
/external/python/cpython3/Modules/_decimal/tests/ |
D | deccheck.py | 157 C.FloatOperation: P.FloatOperation, 300 if maxcontext.flags[P.FloatOperation]: 301 context.p.flags[P.FloatOperation] = True
|
/external/python/cpython3/Doc/library/ |
D | decimal.rst | 101 :const:`Overflow`, :const:`Underflow` and :const:`FloatOperation`. 158 If the :exc:`FloatOperation` signal is trapped, accidental mixing of 163 >>> c.traps[FloatOperation] = True 167 decimal.FloatOperation: [<class 'decimal.FloatOperation'>] 171 decimal.FloatOperation: [<class 'decimal.FloatOperation'>] 394 :class:`float` arguments raise an exception if the :exc:`FloatOperation` 1620 .. class:: FloatOperation 1628 operation is silently recorded by setting :exc:`FloatOperation` in the 1633 conversions are silent. All other mixed operations raise :exc:`FloatOperation`. 1648 FloatOperation(DecimalException, exceptions.TypeError)
|
/external/python/cpython3/Lib/ |
D | _pydecimal.py | 402 class FloatOperation(DecimalException, TypeError): class 419 Underflow, InvalidOperation, Subnormal, FloatOperation] 702 context._raise_error(FloatOperation, 6100 context.flags[FloatOperation] = 1 6102 context._raise_error(FloatOperation,
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.3.rst | 1124 * The :exc:`~decimal.FloatOperation` signal optionally enables stricter
|