Lines Matching refs:Emax
379 context.Emax-context.prec+1)
384 context.Emax-context.prec+1)
1680 exp_max = [context.Emax, Etop][context.clamp]
2411 if bound >= len(str(context.Emax)):
2412 ans = _dec_from_triple(result_sign, '1', context.Emax+1)
2524 exp_max = [context.Emax, context.Etop()][context.clamp]
2556 if not (context.Etiny() <= exp._exp <= context.Emax):
2565 if self_adjusted > context.Emax:
2573 if ans.adjusted() > context.Emax:
3067 if self._sign == 0 and adj > len(str((context.Emax+1)*3)):
3069 ans = _dec_from_triple(0, '1', context.Emax+1)
3678 liminf = -2 * (context.Emax + context.prec)
3679 limsup = 2 * (context.Emax + context.prec)
3884 def __init__(self, prec=None, rounding=None, Emin=None, Emax=None, argument
3897 self.Emax = Emax if Emax is not None else dc.Emax
3978 (self.prec, self.rounding, self.Emin, self.Emax,
4006 nc = Context(self.prec, self.rounding, self.Emin, self.Emax,
4013 nc = Context(self.prec, self.rounding, self.Emin, self.Emax,
4069 return int(self.Emax - self.prec + 1)
6076 Emax=999999,