Searched defs:Emax (Results 1 - 4 of 4) sorted by relevance

/external/python/cpython3/Modules/_decimal/tests/
H A Ddeccheck.py176 self.p.Emax = self.c.Emax
203 assert(self.c.Emax == self.p.Emax)
204 return self.c.Emax
207 self.c.Emax = val
208 self.p.Emax = val
236 Emax = property(getemax, setemax) variable in class:Context
275 context.Emax = C.MAX_EMAX
283 Emax variable
[all...]
/external/python/cpython2/Python/
H A Ddtoa.c253 #define Emax 1023 macro
/external/python/cpython3/Python/
H A Ddtoa.c244 #define Emax 1023 macro
/external/python/cpython3/Lib/
H A D_pydecimal.py355 can be handled by the implementation (the value Emax).
379 context.Emax-context.prec+1)
384 context.Emax-context.prec+1)
1717 # Emax if clamp==0, and between Etiny and Etop if clamp==1.
1721 exp_max = [context.Emax, Etop][context.clamp]
1733 # overflow: exp_min > Etop iff self.adjusted() > Emax
1734 ans = context._raise_error(Overflow, 'above Emax', self._sign)
1760 ans = context._raise_error(Overflow, 'above Emax', self._sign)
2444 # log10(self)*other >= 10**bound and bound >= len(str(Emax))
2445 # then 10**bound >= 10**len(str(Emax)) >
6117 Emax=999999, variable
[all...]

Completed in 394 milliseconds