Lines Matching refs:Etiny
1348 return _dec_from_triple(sign, '0', context.Etiny())
1681 Etiny = context.Etiny()
1685 new_exp = min(max(self._exp, Etiny), exp_max)
1702 self_is_subnormal = exp_min < Etiny
1704 exp_min = Etiny
2420 Etiny = context.Etiny()
2421 if bound >= len(str(-Etiny)):
2422 ans = _dec_from_triple(result_sign, '1', Etiny-1)
2560 if not (context.Etiny() <= exp._exp <= context.Emax):
3074 elif self._sign == 1 and adj > len(str((-context.Etiny()+1)*3)):
3076 ans = _dec_from_triple(0, '1', context.Etiny()-1)
3518 return self.__sub__(_dec_from_triple(0, '1', context.Etiny()-1),
3541 return self.__add__(_dec_from_triple(0, '1', context.Etiny()-1),
4067 def Etiny(self): member in Context