Lines Matching refs:Subnormal
127 'Inexact', 'Rounded', 'Subnormal', 'Overflow', 'Underflow',
165 Underflow (Inexact, Rounded, Subnormal) that indicates that it is only
310 class Subnormal(DecimalException):
313 This occurs and signals subnormal whenever the result of a conversion or
314 operation is subnormal (that is, its adjusted exponent is less than
317 The subnormal signal may be tested (or trapped) to determine if a given
318 or operation (or sequence of operations) yielded a subnormal result.
359 class Underflow(Inexact, Rounded, Subnormal):
365 Emin). That is, the result is both inexact and subnormal.
367 The result after an underflow will be a subnormal number rounded, if
371 In all cases, Inexact, Rounded, and Subnormal will also be raised.
376 Underflow, InvalidOperation, Subnormal]
1709 context._raise_error(Subnormal)
1719 context._raise_error(Subnormal)
2345 # be raised for subnormal results.) We can't directly raise
2369 if newcontext.flags[Subnormal]:
2373 # have raised any of Overflow, Underflow, Subnormal,
2379 for exception in Underflow, Subnormal, Inexact, Rounded, Clamped:
2480 context._raise_error(Subnormal)
3050 """Return True if self is subnormal; otherwise return False."""
3474 context._raise_error(Subnormal)
3492 -Subnormal
3495 +Subnormal
3517 return "-Subnormal"
3519 return "+Subnormal"
4448 """Return True if the operand is subnormal; otherwise return False.
4906 -Subnormal
4909 +Subnormal
4923 '+Subnormal'
4929 '-Subnormal'
5061 if the result is subnormal and inexact.