Home
last modified time | relevance | path

Searched refs:DivisionByZero (Results 1 – 7 of 7) sorted by relevance

/external/v8/src/
Ddeoptimize-reason.h18 V(DivisionByZero, "division by zero") \
/external/python/cpython2/Doc/library/
Ddecimal.rst100 :const:`DivisionByZero`, :const:`Inexact`, :const:`Rounded`, :const:`Subnormal`,
129 capitals=1, flags=[], traps=[Overflow, DivisionByZero,
263 DivisionByZero: x / 0
290 >>> getcontext().traps[DivisionByZero] = 1
295 DivisionByZero: x / 0
671 ``Decimal('-Infinity')`` is returned and the :const:`DivisionByZero` flag
1025 for Overflow, InvalidOperation, and DivisionByZero.
1491 Python exception to be raised. For example, if the :class:`DivisionByZero` trap
1492 is set, then a :exc:`DivisionByZero` exception is raised upon encountering the
1510 .. class:: DivisionByZero
[all …]
/external/python/cpython2/Lib/
Ddecimal.py234 class DivisionByZero(DecimalException, ZeroDivisionError): class
375 _signals = [Clamped, DivisionByZero, Inexact, Overflow, Rounded,
1321 return context._raise_error(DivisionByZero, 'x / 0', sign)
1422 return (context._raise_error(DivisionByZero, 'x // 0', sign),
1566 return context._raise_error(DivisionByZero, 'x // 0',
3239 return context._raise_error(DivisionByZero, 'logb(0)', 1)
5881 traps=[DivisionByZero, Overflow, InvalidOperation],
5895 traps=[DivisionByZero, Overflow, InvalidOperation, Clamped, Underflow],
/external/python/cpython2/Lib/test/
Dtest_decimal.py50 Underflow, Overflow, DivisionByZero, InvalidOperation)
124 'division_by_zero' : DivisionByZero,
/external/v8/src/compiler/
Dcommon-operator.cc422 V(Eager, DivisionByZero) \
/external/python/cpython2/Doc/whatsnew/
D2.4.rst667 decimal.DivisionByZero: x / 0
668 >>> decimal.getcontext().traps[decimal.DivisionByZero] = False
/external/llvm/docs/
DLangRef.rst76 prefix. For example, ``%foo``, ``@DivisionByZero``,