/third_party/python/Modules/_decimal/tests/ |
H A D | deccheck.py | 144 # on prec, Emin and Emax. 196 self.p.Emin = self.c.Emin 216 assert(self.c.Emin == self.p.Emin) 217 return self.c.Emin 220 self.c.Emin = val 221 self.p.Emin = val 256 Emin = property(getemin, setemin) variable in Context 295 context.Emin 303 Emin=C.MIN_EMIN, global() variable [all...] |
H A D | bench.py | 98 c.Emin = C.MIN_EMIN
|
/third_party/python/Lib/test/ |
H A D | test_decimal.py | 482 self.context.Emin = exp 1673 save_emin = DefaultContext.Emin 1676 DefaultContext.Emin = -425000000 1699 DefaultContext.Emin = save_emin 1797 c = Context(Emax=emax, Emin=emin) 2252 c.Emin = -999 2469 context.Emin = -999 2473 self.assertEqual(c.Emin, -999) 2700 c = Context(Emax=99999, Emin=-99999) 2745 xc.Emin [all...] |
/third_party/FreeBSD/contrib/gdtoa/ |
H A D | strtod.c | 608 if (i < Emin) { /* denormal */ 609 i = Emin - i; 626 if (i < Emin) /* denormal */ 627 j += P - Emin;
|
H A D | gdtoaimp.h | 328 #define Emin (-1022) macro
|
/third_party/python/Lib/ |
H A D | _pydecimal.py | 343 """Exponent < Emin before rounding. 347 Emin, before any rounding). The result in all cases is unchanged. 397 Emin). That is, the result is both inexact and subnormal. 445 ['prec', 'Emin', 'Emax', 'capitals', 'clamp', 'rounding', 'flags', 'traps'] 2595 if ans and ans.adjusted() < context.Emin: 3151 return context.Emin <= self.adjusted() 3171 return self.adjusted() < context.Emin 3588 elif ans.adjusted() < context.Emin: 3895 Emin - Minimum exponent 3902 def __init__(self, prec=None, rounding=None, Emin 6093 Emin=-999999, global() variable [all...] |
/third_party/python/Modules/_decimal/ |
H A D | _decimal.c | 821 "valid range for Emin is [MIN_EMIN, 0]"); in context_setemin() 1308 "prec", "rounding", "Emin", "Emax", "capitals", "clamp", in context_init() 1360 "Context(prec=%zd, rounding=%s, Emin=%zd, Emax=%zd, " in context_repr() 1482 { "Emin", (getter)context_getemin, (setter)context_setemin, NULL, NULL}, 1738 "Emin", "Emax", "capitals", in ctxmanager_new() 1748 PyObject *Emin = Py_None; in ctxmanager_new() local 1757 &prec, &rounding, &Emin, &Emax, &capitals, &clamp, &flags, &traps)) { in ctxmanager_new() 1786 Emin, Emax, capitals, in ctxmanager_new()
|
/third_party/python/Python/ |
H A D | dtoa.c | 250 #define Emin (-1022) macro
|
/third_party/icu/icu4c/source/i18n/ |
H A D | decNumber.cpp | 63 /* range (Emax in the range 0 through 999,999,999 and Emin in the */ 3329 /* set -- the context to use for Emin */ 3546 /* set is the context to use for Emin */ 3566 /* set is the context to use for Emin */ 5365 /* least 6.59E+4342944, so (due to the restriction on Emax/Emin) */ in decExpOp() 7459 /* decSetSubnormal -- process value whose exponent is <Emin */ 7602 #error GetInt may need updating [for Emin]
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | decNumber.cpp | 63 /* range (Emax in the range 0 through 999,999,999 and Emin in the */ 3329 /* set -- the context to use for Emin */ 3546 /* set is the context to use for Emin */ 3566 /* set is the context to use for Emin */ 5365 /* least 6.59E+4342944, so (due to the restriction on Emax/Emin) */ in decExpOp() 7459 /* decSetSubnormal -- process value whose exponent is <Emin */ 7602 #error GetInt may need updating [for Emin]
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | decNumber.cpp | 63 /* range (Emax in the range 0 through 999,999,999 and Emin in the */ 3329 /* set -- the context to use for Emin */ 3546 /* set is the context to use for Emin */ 3566 /* set is the context to use for Emin */ 5365 /* least 6.59E+4342944, so (due to the restriction on Emax/Emin) */ in decExpOp() 7459 /* decSetSubnormal -- process value whose exponent is <Emin */ 7602 #error GetInt may need updating [for Emin]
|