/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
decimal.py | 127 'Inexact', 'Rounded', 'Subnormal', 'Overflow', 'Underflow',
166 Underflow (Inexact, Rounded, Subnormal) that indicates that it is only
311 class Subnormal(DecimalException):
314 This occurs and signals subnormal whenever the result of a conversion or
315 operation is subnormal (that is, its adjusted exponent is less than
318 The subnormal signal may be tested (or trapped) to determine if a given
319 or operation (or sequence of operations) yielded a subnormal result.
360 class Underflow(Inexact, Rounded, Subnormal):
366 Emin). That is, the result is both inexact and subnormal.
368 The result after an underflow will be a subnormal number rounded, if [all...] |
/external/python/cpython2/Lib/ |
decimal.py | 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, i [all...] |
/external/python/cpython3/Lib/test/ |
test_decimal.py | 66 C: [C.Clamped, C.Rounded, C.Inexact, C.Subnormal, C.Underflow, 69 P: [P.Clamped, P.Rounded, P.Inexact, P.Subnormal, P.Underflow, 174 # status has additional Subnormal, Underflow 254 'subnormal' : self.decimal.Subnormal, [all...] |
test_functools.py | [all...] |
/external/python/cpython3/Lib/ |
_pydecimal.py | 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, i [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_decimal.py | 48 OrderedSignals = (Clamped, Rounded, Inexact, Subnormal,
131 'subnormal' : Subnormal,
[all...] |
/external/python/cpython3/Modules/_decimal/tests/ |
deccheck.py | 155 C.Subnormal: P.Subnormal, 465 below etiny, cdecimal does not set Subnormal/Underflow. Example: 478 return True # Subnormal/Underflow may be missing. [all...] |
/external/python/cpython2/Lib/test/ |
test_decimal.py | 49 OrderedSignals = (Clamped, Rounded, Inexact, Subnormal, 132 'subnormal' : Subnormal, [all...] |