Lines Matching full:etop
1657 # Emax if _clamp==0, and between Etiny and Etop if _clamp==1.
1659 Etop = context.Etop()
1661 exp_max = [context.Emax, Etop][context._clamp]
1672 if exp_min > Etop:
1673 # overflow: exp_min > Etop iff self.adjusted() > Emax
1699 if exp_min > Etop:
1722 if context._clamp == 1 and self._exp > Etop:
1724 self_padded = self._int + '0'*(self._exp - Etop)
1725 return _dec_from_triple(self._sign, self_padded, Etop)
2412 exp_max = [context.Emax, context.Etop()][context._clamp]
3404 return _dec_from_triple(0, '9'*context.prec, context.Etop())
3427 return _dec_from_triple(1, '9'*context.prec, context.Etop())
3899 def Etop(self):