Lines Matching refs:Etiny
1344 return _dec_from_triple(sign, '0', context.Etiny())
1677 Etiny = context.Etiny()
1681 new_exp = min(max(self._exp, Etiny), exp_max)
1698 self_is_subnormal = exp_min < Etiny
1700 exp_min = Etiny
2416 Etiny = context.Etiny()
2417 if bound >= len(str(-Etiny)):
2418 ans = _dec_from_triple(result_sign, '1', Etiny-1)
2556 if not (context.Etiny() <= exp._exp <= context.Emax):
3070 elif self._sign == 1 and adj > len(str((-context.Etiny()+1)*3)):
3072 ans = _dec_from_triple(0, '1', context.Etiny()-1)
3514 return self.__sub__(_dec_from_triple(0, '1', context.Etiny()-1),
3537 return self.__add__(_dec_from_triple(0, '1', context.Etiny()-1),
4063 def Etiny(self): member in Context