Searched refs:FloatOperation (Results 1 – 10 of 10) 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/v8/src/ic/ |
D | binary-op-assembler.h | 52 typedef std::function<Node*(Node*, Node*)> FloatOperation; typedef 56 const SmiOperation& smiOperation, const FloatOperation& floatOperation,
|
D | binary-op-assembler.cc | 218 const SmiOperation& smiOperation, const FloatOperation& floatOperation, in Generate_BinaryOperationWithFeedback()
|
/external/python/cpython3/Lib/test/ |
D | test_decimal.py | 68 C.FloatOperation] if C else None, 71 P.FloatOperation] 2756 FloatOperation = decimal.FloatOperation 2768 self.assertTrue(issubclass(FloatOperation, DecimalException)) 2769 self.assertTrue(issubclass(FloatOperation, TypeError)) 3785 FloatOperation = self.decimal.FloatOperation 3790 self.assertFalse(c.traps[FloatOperation]) 3795 self.assertTrue(c.flags[FloatOperation]) 3799 self.assertTrue(c.flags[FloatOperation]) 3804 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 | 106 :const:`Overflow`, :const:`Underflow` and :const:`FloatOperation`. 163 If the :exc:`FloatOperation` signal is trapped, accidental mixing of 168 >>> c.traps[FloatOperation] = True 172 decimal.FloatOperation: [<class 'decimal.FloatOperation'>] 176 decimal.FloatOperation: [<class 'decimal.FloatOperation'>] 399 :class:`float` arguments raise an exception if the :exc:`FloatOperation` 1625 .. class:: FloatOperation 1633 operation is silently recorded by setting :exc:`FloatOperation` in the 1638 conversions are silent. All other mixed operations raise :exc:`FloatOperation`. 1653 FloatOperation(DecimalException, exceptions.TypeError)
|
/external/python/cpython3/Lib/ |
D | _pydecimal.py | 402 class FloatOperation(DecimalException, TypeError): class 419 Underflow, InvalidOperation, Subnormal, FloatOperation] 656 context._raise_error(FloatOperation, 6059 context.flags[FloatOperation] = 1 6061 context._raise_error(FloatOperation,
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.3.rst | 1124 * The :exc:`~decimal.FloatOperation` signal optionally enables stricter
|