Searched refs:Emax (Results 1 – 18 of 18) sorted by relevance
/third_party/python/Modules/_decimal/tests/ |
D | deccheck.py | 197 self.p.Emax = self.c.Emax 224 assert(self.c.Emax == self.p.Emax) 225 return self.c.Emax 228 self.c.Emax = val 229 self.p.Emax = val 257 Emax = property(getemax, setemax) variable in Context 296 context.Emax = C.MAX_EMAX 304 Emax=C.MAX_EMAX, 374 self.maxcontext.Emax = C.MAX_EMAX 395 self.maxctx = P.Context(Emax=10**18, Emin=-10**18) [all …]
|
D | bench.py | 97 c.Emax = C.MAX_EMAX
|
/third_party/python/Lib/ |
D | _pydecimal.py | 383 context.Emax-context.prec+1) 388 context.Emax-context.prec+1) 1684 exp_max = [context.Emax, Etop][context.clamp] 2415 if bound >= len(str(context.Emax)): 2416 ans = _dec_from_triple(result_sign, '1', context.Emax+1) 2528 exp_max = [context.Emax, context.Etop()][context.clamp] 2560 if not (context.Etiny() <= exp._exp <= context.Emax): 2569 if self_adjusted > context.Emax: 2577 if ans.adjusted() > context.Emax: 3071 if self._sign == 0 and adj > len(str((context.Emax+1)*3)): [all …]
|
/third_party/python/Lib/test/ |
D | test_decimal.py | 497 self.context.Emax = exp 1620 save_emax = DefaultContext.Emax 1623 DefaultContext.Emax = 425000000 1646 DefaultContext.Emax = save_emax 1745 c = Context(Emax=emax, Emin=emin) 2199 c.Emax = 999 2416 context.Emax = 999 2420 self.assertEqual(c.Emax, 999) 2641 c = Context(Emax=99999, Emin=-99999) 2685 xc.Emax = 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, 792 :attr:`Emax` or less than :attr:`Etiny`. 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 1013 *Emax* in the range [:const:`0`, :const:`MAX_EMAX`]. 1022 range ``Emin - prec + 1 <= e <= Emax - prec + 1``. If *clamp* is 1024 the :class:`Decimal` instance is at most ``Emax``. When *clamp* is 1031 >>> Context(prec=6, Emax=999, clamp=1).create_decimal('1.23e999') [all …]
|
/third_party/openGLES/extensions/EXT/ |
D | EXT_texture_shared_exponent.txt | 162 where sharedexp_max is (2^N-1)/2^N * 2^(Emax-B), N is the number 163 of mantissa bits per component, Emax is the maximum allowed biased 166 format, N=9, Emax=31, and B=15.
|
/third_party/skia/third_party/externals/opengl-registry/extensions/EXT/ |
D | EXT_texture_shared_exponent.txt | 162 where sharedexp_max is (2^N-1)/2^N * 2^(Emax-B), N is the number 163 of mantissa bits per component, Emax is the maximum allowed biased 166 format, N=9, Emax=31, and B=15.
|
/third_party/python/Lib/test/decimaltestdata/ |
D | dsEncode.decTest | 35 -- Emax = 96 (largest exponent value)
|
D | ddEncode.decTest | 35 -- Emax = 384 (largest exponent value)
|
D | dqEncode.decTest | 35 -- Emax = 6144 (largest exponent value)
|
D | powersqrt.decTest | 2927 -- Etiny = -(Emax + (precision-1))
|
D | squareroot.decTest | 2918 -- Etiny = -(Emax + (precision-1))
|
/third_party/python/Python/ |
D | dtoa.c | 248 #define Emax 1023 macro
|
/third_party/node/deps/icu-small/source/i18n/ |
D | decNumber.cpp | 7599 #error GetInt may need updating [for Emax]
|
/third_party/flutter/skia/third_party/externals/icu/source/i18n/ |
D | decNumber.cpp | 7599 #error GetInt may need updating [for Emax]
|
/third_party/icu/icu4c/source/i18n/ |
D | decNumber.cpp | 7599 #error GetInt may need updating [for Emax]
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
D | decNumber.cpp | 7599 #error GetInt may need updating [for Emax]
|
/third_party/python/Doc/whatsnew/ |
D | 3.3.rst | 1149 the magnitude of :attr:`~decimal.Context.Emax` and
|