Lines Matching full:etop
1717 # Emax if clamp==0, and between Etiny and Etop if clamp==1.
1719 Etop = context.Etop()
1721 exp_max = [context.Emax, Etop][context.clamp]
1732 if exp_min > Etop:
1733 # overflow: exp_min > Etop iff self.adjusted() > Emax
1759 if exp_min > Etop:
1782 if context.clamp == 1 and self._exp > Etop:
1784 self_padded = self._int + '0'*(self._exp - Etop)
1785 return _dec_from_triple(self._sign, self_padded, Etop)
2565 exp_max = [context.Emax, context.Etop()][context.clamp]
3547 return _dec_from_triple(0, '9'*context.prec, context.Etop())
3570 return _dec_from_triple(1, '9'*context.prec, context.Etop())
4108 def Etop(self):