Searched refs:MAX_PREC (Results 1 – 7 of 7) sorted by relevance
/external/mksh/src/ |
D | expr.c | 47 #define MAX_PREC P_COMMA macro 155 v = intvar(es, evalexpr(es, MAX_PREC)); in v_evaluate() 293 vl = evalexpr(es, MAX_PREC); in evalexpr() 352 vl = evalexpr(es, MAX_PREC); in evalexpr()
|
/external/python/cpython3/Modules/_decimal/tests/ |
D | bench.py | 99 c.prec = C.MAX_PREC
|
D | deccheck.py | 298 prec=C.MAX_PREC, 369 self.maxcontext.prec = C.MAX_PREC
|
/external/python/cpython3/Lib/test/ |
D | test_decimal.py | 463 if self.decimal == C and self.decimal.MAX_PREC == 425000000: 470 if self.decimal == C and self.decimal.MAX_PREC == 425000000: 475 if self.decimal == C and self.decimal.MAX_PREC == 425000000: 4220 self.assertEqual(C.MAX_PREC, P.MAX_PREC) 4818 HAVE_CONFIG_64 = (C.MAX_PREC > 425000000) 4870 if C.MAX_PREC == 425000000: 4879 if C.MAX_PREC == 425000000: 4930 HAVE_CONFIG_64 = (C.MAX_PREC > 425000000) 4995 if C.MAX_PREC == 425000000: 5019 int_max = 2**63-1 if C.MAX_PREC > 425000000 else 2**31-1 [all …]
|
/external/python/cpython3/Doc/library/ |
D | decimal.rst | 1002 *prec* is an integer in the range [:const:`1`, :const:`MAX_PREC`] that sets 1469 | .. data:: MAX_PREC | :const:`425000000` | :const:`999999999999999999` | 2150 >>> setcontext(Context(prec=MAX_PREC, Emax=MAX_EMAX, Emin=MIN_EMIN)) 2156 For inexact results, :attr:`MAX_PREC` is far too large on 64-bit platforms and
|
/external/python/cpython3/Lib/ |
D | _pydecimal.py | 180 MAX_PREC = 999999999999999999 variable 184 MAX_PREC = 425000000 variable 188 MIN_ETINY = MIN_EMIN - (MAX_PREC-1)
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.3.rst | 1140 | :const:`MAX_PREC` | :const:`425000000` | :const:`999999999999999999` |
|