Lines Matching refs:Etiny
1315 return _dec_from_triple(sign, '0', context.Etiny())
1658 Etiny = context.Etiny()
1662 new_exp = min(max(self._exp, Etiny), exp_max)
1679 self_is_subnormal = exp_min < Etiny
1681 exp_min = Etiny
2304 Etiny = context.Etiny()
2305 if bound >= len(str(-Etiny)):
2306 ans = _dec_from_triple(result_sign, '1', Etiny-1)
2454 if not (context.Etiny() <= exp._exp <= context.Emax):
2968 elif self._sign == 1 and adj > len(str((-context.Etiny()+1)*3)):
2970 ans = _dec_from_triple(0, '1', context.Etiny()-1)
3412 return self.__sub__(_dec_from_triple(0, '1', context.Etiny()-1),
3435 return self.__add__(_dec_from_triple(0, '1', context.Etiny()-1),
3895 def Etiny(self): member in Context