Home
last modified time | relevance | path

Searched refs:Emin (Results 1 – 25 of 26) sorted by relevance

12

/third_party/python/Modules/_decimal/tests/
Ddeccheck.py196 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 …]
Dbench.py98 c.Emin = C.MIN_EMIN
/third_party/python/Lib/test/
Dtest_decimal.py492 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/
Dabs.decTest105 -- next is rounded to Emin
118 -- next is rounded to Emin
Dminus.decTest126 -- next is rounded to Emin
139 -- next is rounded to Emin
Dplus.decTest137 -- next is rounded to Emin
150 -- next is rounded to Emin
Dreduce.decTest165 -- next is rounded to Emin
178 -- next is rounded to Emin
Drescale.decTest635 -- next is rounded to Emin
649 -- next is rounded to Emin
661 -- next is rounded to Emin
673 -- next is rounded to Emin
DddQuantize.decTest596 -- next is rounded to Emin
610 -- next is rounded to Emin
622 -- next is rounded to Emin
634 -- next is rounded to Emin
DdqQuantize.decTest606 -- next is rounded to Emin
620 -- next is rounded to Emin
632 -- next is rounded to Emin
644 -- next is rounded to Emin
Dquantize.decTest754 -- next is rounded to Emin
768 -- next is rounded to Emin
780 -- next is rounded to Emin
792 -- next is rounded to Emin
DdsEncode.decTest36 -- Emin = -95 (smallest exponent value)
Dsubtract.decTest804 -- next is rounded to Emin
817 -- next is rounded to Emin
DddEncode.decTest36 -- Emin = -383 (smallest exponent value)
DdqEncode.decTest36 -- Emin = -6143 (smallest exponent value)
/third_party/FreeBSD/contrib/gdtoa/
Dstrtod.c608 if (i < Emin) { /* denormal */
609 i = Emin - i;
626 if (i < Emin) /* denormal */
627 j += P - Emin;
Dgdtoaimp.h328 #define Emin (-1022) macro
/third_party/python/Lib/
D_pydecimal.py2585 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/
Ddecimal.rst133 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/
Ddtoa.c249 #define Emin (-1022) macro
/third_party/skia/third_party/externals/icu/source/i18n/
DdecNumber.cpp7602 #error GetInt may need updating [for Emin]
/third_party/icu/icu4c/source/i18n/
DdecNumber.cpp7602 #error GetInt may need updating [for Emin]
/third_party/node/deps/icu-small/source/i18n/
DdecNumber.cpp7602 #error GetInt may need updating [for Emin]
/third_party/python/Doc/whatsnew/
D3.3.rst1150 :attr:`~decimal.Context.Emin` has changed to :const:`999999`.
/third_party/icu/icu4j/perf-tests/data/collation/
DTestNames_Latin.txt2182 Emin, Tracey

12