Home | History | Annotate | Download | only in python2.7

Lines Matching full:etop

1659         # Emax if _clamp==0, and between Etiny and Etop if _clamp==1.
1661 Etop = context.Etop()
1663 exp_max = [context.Emax, Etop][context._clamp]
1674 if exp_min > Etop:
1675 # overflow: exp_min > Etop iff self.adjusted() > Emax
1701 if exp_min > Etop:
1724 if context._clamp == 1 and self._exp > Etop:
1726 self_padded = self._int + '0'*(self._exp - Etop)
1727 return _dec_from_triple(self._sign, self_padded, Etop)
2414 exp_max = [context.Emax, context.Etop()][context._clamp]
3406 return _dec_from_triple(0, '9'*context.prec, context.Etop())
3429 return _dec_from_triple(1, '9'*context.prec, context.Etop())
3899 def Etop(self):