Searched refs:Emax (Results 1 - 9 of 9) sorted by relevance
/third_party/python/Modules/_decimal/tests/ |
H A D | deccheck.py | 144 # on prec, Emin and Emax. 197 self.p.Emax = self.c.Emax 224 assert(self.c.Emax == self.p.Emax) 225 return self.c.Emax 228 self.c.Emax = val 229 self.p.Emax = val 257 Emax = property(getemax, setemax) variable in Context 296 context.Emax 304 Emax=C.MAX_EMAX, global() variable [all...] |
H A D | bench.py | 97 c.Emax = C.MAX_EMAX
|
/third_party/python/Lib/test/ |
H A D | test_decimal.py | 282 guaranteed maximum values for prec, Emax etc. are 425000000, 487 self.context.Emax = exp 1672 save_emax = DefaultContext.Emax 1675 DefaultContext.Emax = 425000000 1698 DefaultContext.Emax = save_emax 1797 c = Context(Emax=emax, Emin=emin) 2251 c.Emax = 999 2468 context.Emax = 999 2472 self.assertEqual(c.Emax, 999) 2700 c = Context(Emax [all...] |
/third_party/python/Lib/ |
H A D | _pydecimal.py | 359 can be handled by the implementation (the value Emax). 383 context.Emax-context.prec+1) 388 context.Emax-context.prec+1) 445 ['prec', 'Emin', 'Emax', 'capitals', 'clamp', 'rounding', 'flags', 'traps'] 1690 # Emax if clamp==0, and between Etiny and Etop if clamp==1. 1694 exp_max = [context.Emax, Etop][context.clamp] 1706 # overflow: exp_min > Etop iff self.adjusted() > Emax 1707 ans = context._raise_error(Overflow, 'above Emax', self._sign) 1733 ans = context._raise_error(Overflow, 'above Emax', self._sign) 2417 # log10(self)*other >= 10**bound and bound >= len(str(Emax)) 6092 Emax=999999, global() variable [all...] |
/third_party/python/Modules/_decimal/ |
H A D | _decimal.c | 841 "valid range for Emax is [0, MAX_EMAX]"); in context_setemax() 1308 "prec", "rounding", "Emin", "Emax", "capitals", "clamp", in context_init() 1360 "Context(prec=%zd, rounding=%s, Emin=%zd, Emax=%zd, " in context_repr() 1481 { "Emax", (getter)context_getemax, (setter)context_setemax, NULL, NULL}, 1738 "Emin", "Emax", "capitals", in ctxmanager_new() 1749 PyObject *Emax = 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 | 249 #define Emax 1023 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 */ 5365 /* least 6.59E+4342944, so (due to the restriction on Emax/Emin) */ in decExpOp() 7599 #error GetInt may need updating [for Emax]
|
/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 */ 5365 /* least 6.59E+4342944, so (due to the restriction on Emax/Emin) */ in decExpOp() 7599 #error GetInt may need updating [for Emax]
|
/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 */ 5365 /* least 6.59E+4342944, so (due to the restriction on Emax/Emin) */ in decExpOp() 7599 #error GetInt may need updating [for Emax]
|
Completed in 57 milliseconds