/third_party/python/Modules/_decimal/tests/ |
D | deccheck.py | 196 self.p.Emin = self.c.Emin 216 assert(self.c.Emin == self.p.Emin) 217 return self.c.Emin 220 self.c.Emin = val 221 self.p.Emin = val 256 Emin = property(getemin, setemin) variable in Context 295 context.Emin = C.MIN_EMIN 303 Emin=C.MIN_EMIN, 375 self.maxcontext.Emin = C.MIN_EMIN 395 self.maxctx = P.Context(Emax=10**18, Emin=-10**18) [all …]
|
D | bench.py | 98 c.Emin = C.MIN_EMIN
|
/third_party/python/Lib/test/ |
D | test_decimal.py | 492 self.context.Emin = exp 1621 save_emin = DefaultContext.Emin 1624 DefaultContext.Emin = -425000000 1647 DefaultContext.Emin = save_emin 1745 c = Context(Emax=emax, Emin=emin) 2200 c.Emin = -999 2417 context.Emin = -999 2421 self.assertEqual(c.Emin, -999) 2641 c = Context(Emax=99999, Emin=-99999) 2686 xc.Emin = -1 [all …]
|
/third_party/python/Lib/test/decimaltestdata/ |
D | abs.decTest | 105 -- next is rounded to Emin 118 -- next is rounded to Emin
|
D | minus.decTest | 126 -- next is rounded to Emin 139 -- next is rounded to Emin
|
D | plus.decTest | 137 -- next is rounded to Emin 150 -- next is rounded to Emin
|
D | reduce.decTest | 165 -- next is rounded to Emin 178 -- next is rounded to Emin
|
D | rescale.decTest | 635 -- next is rounded to Emin 649 -- next is rounded to Emin 661 -- next is rounded to Emin 673 -- next is rounded to Emin
|
D | ddQuantize.decTest | 596 -- next is rounded to Emin 610 -- next is rounded to Emin 622 -- next is rounded to Emin 634 -- next is rounded to Emin
|
D | dqQuantize.decTest | 606 -- next is rounded to Emin 620 -- next is rounded to Emin 632 -- next is rounded to Emin 644 -- next is rounded to Emin
|
D | quantize.decTest | 754 -- next is rounded to Emin 768 -- next is rounded to Emin 780 -- next is rounded to Emin 792 -- next is rounded to Emin
|
D | dsEncode.decTest | 36 -- Emin = -95 (smallest exponent value)
|
D | subtract.decTest | 804 -- next is rounded to Emin 817 -- next is rounded to Emin
|
D | ddEncode.decTest | 36 -- Emin = -383 (smallest exponent value)
|
D | dqEncode.decTest | 36 -- Emin = -6143 (smallest exponent value)
|
/third_party/FreeBSD/contrib/gdtoa/ |
D | strtod.c | 608 if (i < Emin) { /* denormal */ 609 i = Emin - i; 626 if (i < Emin) /* denormal */ 627 j += P - Emin;
|
D | gdtoaimp.h | 328 #define Emin (-1022) macro
|
/third_party/python/Lib/ |
D | _pydecimal.py | 2585 if ans and ans.adjusted() < context.Emin: 3141 return context.Emin <= self.adjusted() 3161 return self.adjusted() < context.Emin 3578 elif ans.adjusted() < context.Emin: 3888 def __init__(self, prec=None, rounding=None, Emin=None, Emax=None, argument 3900 self.Emin = Emin if Emin is not None else dc.Emin 3982 (self.prec, self.rounding, self.Emin, self.Emax, 4010 nc = Context(self.prec, self.rounding, self.Emin, self.Emax, 4017 nc = Context(self.prec, self.rounding, self.Emin, self.Emax, 4069 return int(self.Emin - self.prec + 1) [all …]
|
/third_party/python/Doc/library/ |
D | decimal.rst | 133 Context(prec=28, rounding=ROUND_HALF_EVEN, Emin=-999999, Emax=999999, 284 Context(prec=9, rounding=ROUND_HALF_EVEN, Emin=-999999, Emax=999999, 309 Context(prec=9, rounding=ROUND_HALF_EVEN, Emin=-999999, Emax=999999, 996 .. class:: Context(prec=None, rounding=None, Emin=None, Emax=None, capitals=None, clamp=None, flags… 1011 The *Emin* and *Emax* fields are integers specifying the outer limits allowable 1012 for exponents. *Emin* must be in the range [:const:`MIN_EMIN`, :const:`0`], 1022 range ``Emin - prec + 1 <= e <= Emax - prec + 1``. If *clamp* is 1112 Returns a value equal to ``Emin - prec + 1`` which is the minimum exponent 1556 :attr:`Emin` and :attr:`Emax` limits. If possible, the exponent is reduced to 1624 Exponent was lower than :attr:`Emin` prior to rounding. [all …]
|
/third_party/python/Python/ |
D | dtoa.c | 249 #define Emin (-1022) macro
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
D | decNumber.cpp | 7602 #error GetInt may need updating [for Emin]
|
/third_party/icu/icu4c/source/i18n/ |
D | decNumber.cpp | 7602 #error GetInt may need updating [for Emin]
|
/third_party/node/deps/icu-small/source/i18n/ |
D | decNumber.cpp | 7602 #error GetInt may need updating [for Emin]
|
/third_party/python/Doc/whatsnew/ |
D | 3.3.rst | 1150 :attr:`~decimal.Context.Emin` has changed to :const:`999999`.
|
/third_party/icu/icu4j/perf-tests/data/collation/ |
D | TestNames_Latin.txt | 2182 Emin, Tracey
|