Home | History | Annotate | Download | only in Lib

Lines Matching refs:Subnormal

127     'Inexact', 'Rounded', 'Subnormal', 'Overflow', 'Underflow',
193 Underflow (Inexact, Rounded, Subnormal) that indicates that it is only
338 class Subnormal(DecimalException):
341 This occurs and signals subnormal whenever the result of a conversion or
342 operation is subnormal (that is, its adjusted exponent is less than
345 The subnormal signal may be tested (or trapped) to determine if a given
346 or operation (or sequence of operations) yielded a subnormal result.
387 class Underflow(Inexact, Rounded, Subnormal):
393 Emin). That is, the result is both inexact and subnormal.
395 The result after an underflow will be a subnormal number rounded, if
399 In all cases, Inexact, Rounded, and Subnormal will also be raised.
419 Underflow, InvalidOperation, Subnormal, FloatOperation]
1728 context._raise_error(Subnormal)
1738 context._raise_error(Subnormal)
2457 # be raised for subnormal results.) We can't directly raise
2481 if newcontext.flags[Subnormal]:
2485 # have raised any of Overflow, Underflow, Subnormal,
2491 for exception in Underflow, Subnormal, Inexact, Rounded, Clamped:
2582 context._raise_error(Subnormal)
3152 """Return True if self is subnormal; otherwise return False."""
3576 context._raise_error(Subnormal)
3594 -Subnormal
3597 +Subnormal
3619 return "-Subnormal"
3621 return "+Subnormal"
4620 """Return True if the operand is subnormal; otherwise return False.
5078 -Subnormal
5081 +Subnormal
5095 '+Subnormal'
5101 '-Subnormal'
5233 if the result is subnormal and inexact.