Home
last modified time | relevance | path

Searched refs:Etiny (Results 1 – 13 of 13) sorted by relevance

/third_party/python/Lib/
D_pydecimal.py1348 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)):
[all …]
/third_party/python/Python/
Ddtoa.c250 #define Etiny (-1074) /* smallest denormal is 2**Etiny */ macro
1015 *e = Etiny - 1 + (int)((word0(d) & Exp_mask) >> Exp_shift); in sd2b()
1016 if (*e < Etiny) in sd2b()
1017 *e = Etiny; in sd2b()
1024 if (*e < Etiny) { in sd2b()
1025 scale = Etiny - *e; in sd2b()
1026 *e = Etiny; in sd2b()
/third_party/python/Lib/test/decimaltestdata/
Dplus.decTest158 -- subnormals clamped to 0-Etiny
Dclamp.decTest187 -- subnormals clamped to 0-Etiny
DdsEncode.decTest37 -- bias = 101 (subtracted from encoded exponent) = -Etiny
Dpowersqrt.decTest2927 -- Etiny = -(Emax + (precision-1))
2931 precision: 9 -- Etiny=-17
2934 precision: 10 -- Etiny=-18
2938 precision: 11 -- Etiny=-19
2942 precision: 12 -- Etiny=-20
2946 precision: 13 -- Etiny=-21
2949 precision: 14 -- Etiny=-22
DddEncode.decTest37 -- bias = 398 (subtracted from encoded exponent) = -Etiny
DdqEncode.decTest37 -- bias = 6176 (subtracted from encoded exponent) = -Etiny
Dsquareroot.decTest2918 -- Etiny = -(Emax + (precision-1))
2922 precision: 9 -- Etiny=-17
2925 precision: 10 -- Etiny=-18
2929 precision: 11 -- Etiny=-19
2932 precision: 12 -- Etiny=-20
2936 precision: 13 -- Etiny=-21
2939 precision: 14 -- Etiny=-22
Drescale.decTest691 -- rhs must be no less than Etiny
Dquantize.decTest810 -- rhs must be no less than Etiny
/third_party/python/Doc/library/
Ddecimal.rst792 :attr:`Emax` or less than :attr:`Etiny`.
1110 .. method:: Etiny()
1114 to :const:`Etiny`.
/third_party/python/Lib/test/
Dtest_decimal.py5039 self.assertEqual(c.Etiny(), -3033)