Lines Matching refs:Emax
383 context.Emax-context.prec+1)
388 context.Emax-context.prec+1)
1684 exp_max = [context.Emax, Etop][context.clamp]
2415 if bound >= len(str(context.Emax)):
2416 ans = _dec_from_triple(result_sign, '1', context.Emax+1)
2528 exp_max = [context.Emax, context.Etop()][context.clamp]
2560 if not (context.Etiny() <= exp._exp <= context.Emax):
2569 if self_adjusted > context.Emax:
2577 if ans.adjusted() > context.Emax:
3071 if self._sign == 0 and adj > len(str((context.Emax+1)*3)):
3073 ans = _dec_from_triple(0, '1', context.Emax+1)
3682 liminf = -2 * (context.Emax + context.prec)
3683 limsup = 2 * (context.Emax + context.prec)
3888 def __init__(self, prec=None, rounding=None, Emin=None, Emax=None, argument
3901 self.Emax = Emax if Emax is not None else dc.Emax
3982 (self.prec, self.rounding, self.Emin, self.Emax,
4010 nc = Context(self.prec, self.rounding, self.Emin, self.Emax,
4017 nc = Context(self.prec, self.rounding, self.Emin, self.Emax,
4073 return int(self.Emax - self.prec + 1)
6078 Emax=999999,