Home
last modified time | relevance | path

Searched refs:FloatOperation (Results 1 – 10 of 10) sorted by relevance

/external/gemmlowp/meta/
Dlegacy_operations_common.h37 class FloatOperation {
39 FloatOperation(std::int32_t lhs_offset, std::int32_t rhs_offset, in FloatOperation() function
Dlegacy_multi_thread_gemv.h53 class GemvFloatOperation : public FloatOperation {
57 : FloatOperation(lhs_offset, rhs_offset, result_offset) {} in GemvFloatOperation()
Dlegacy_multi_thread_gemm.h91 class GemmFloatOperation : public FloatOperation {
95 : FloatOperation(lhs_offset, rhs_offset, result_offset) {} in GemmFloatOperation()
/external/v8/src/ic/
Dbinary-op-assembler.h52 typedef std::function<Node*(Node*, Node*)> FloatOperation; typedef
56 const SmiOperation& smiOperation, const FloatOperation& floatOperation,
Dbinary-op-assembler.cc218 const SmiOperation& smiOperation, const FloatOperation& floatOperation, in Generate_BinaryOperationWithFeedback()
/external/python/cpython3/Lib/test/
Dtest_decimal.py68 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/
Ddeccheck.py157 C.FloatOperation: P.FloatOperation,
300 if maxcontext.flags[P.FloatOperation]:
301 context.p.flags[P.FloatOperation] = True
/external/python/cpython3/Doc/library/
Ddecimal.rst106 :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.py402 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/
D3.3.rst1124 * The :exc:`~decimal.FloatOperation` signal optionally enables stricter