Home
last modified time | relevance | path

Searched refs:_decimal (Results 1 – 22 of 22) sorted by relevance

/external/python/cpython3/Modules/_decimal/tests/
Drunall-memorydebugger.sh79 $GMAKE | grep _decimal
91 $GMAKE | grep _decimal
111 $GMAKE | grep _decimal
116 cd Modules/_decimal
137 $GMAKE | grep _decimal
140 ./python Modules/_decimal/tests/deccheck.py
148 $GMAKE | grep _decimal
151 ./python Modules/_decimal/tests/deccheck.py
168 $GMAKE | grep _decimal
171 $valgrind ./python Modules/_decimal/tests/deccheck.py
Drunall.bat37 call python.bat .\Modules\_decimal\tests\deccheck.py
65 call python.bat .\Modules\_decimal\tests\deccheck.py
99 call python.bat .\Modules\_decimal\tests\deccheck.py
127 call python.bat .\Modules\_decimal\tests\deccheck.py
/external/python/cpython3/Lib/
Ddecimal.py3 from _decimal import *
4 from _decimal import __doc__
5 from _decimal import __version__
6 from _decimal import __libmpdec_version__
/external/brotli/
DCMakeLists.txt53 set(_decimal 0) variable
56 math(EXPR _decimal "${_decimal} * 16")
60 math(EXPR _decimal "${_decimal} + 10")
62 math(EXPR _decimal "${_decimal} + 11")
64 math(EXPR _decimal "${_decimal} + 12")
66 math(EXPR _decimal "${_decimal} + 13")
68 math(EXPR _decimal "${_decimal} + 14")
70 math(EXPR _decimal "${_decimal} + 15")
72 math(EXPR _decimal "${_decimal} + ${_digit}")
76 set(${DECIMAL} ${_decimal} PARENT_SCOPE)
/external/fonttools/Lib/fontTools/misc/
Dpy23.py3 import decimal as _decimal namespace
142 exponent = _decimal.Decimal("10") ** (-ndigits)
144 d = _decimal.Decimal.from_float(number).quantize(
145 exponent, rounding=_decimal.ROUND_HALF_UP
/external/python/cpython3/Modules/_decimal/
DREADME.txt6 _decimal.c is a wrapper for the libmpdec library. libmpdec is a fast C
15 As usual, the build process for _decimal.so is driven by setup.py in the top
/external/python/cpython2/Lib/test/
Dpythoninfo.py444 import _decimal
449 copy_attributes(info_add, _decimal, '_decimal.%s', attributes)
/external/python/cpython3/Lib/test/
Dpythoninfo.py572 import _decimal
577 copy_attributes(info_add, _decimal, '_decimal.%s', attributes)
/external/python/cpython3/Modules/_decimal/libmpdec/
DREADME.txt11 Files required for the Python _decimal module
/external/python/cpython3/Doc/library/
Ddecimal.rst122 .. _decimal-tutorial:
340 .. _decimal-decimal:
903 .. _decimal-context:
1458 .. _decimal-rounding-modes:
1531 .. _decimal-signals:
1671 .. _decimal-notes:
1785 .. _decimal-threads:
1823 .. _decimal-recipes:
1980 .. _decimal-faq:
/external/python/cpython2/Doc/library/
Ddecimal.rst117 .. _decimal-tutorial:
306 .. _decimal-decimal:
933 .. _decimal-context:
1477 .. _decimal-signals:
1599 .. _decimal-notes:
1713 .. _decimal-threads:
1751 .. _decimal-recipes:
1901 .. _decimal-faq:
/external/python/cpython3/PCbuild/
Dreadme.txt136 _decimal
Dpcbuild.sln22 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_decimal", "_decimal.vcxproj", "{0E9791DB-593A…
/external/python/cpython3/
Dconfigure.ac3110 …AS_HELP_STRING([--with-system-libmpdec], [build _decimal module using an installed libmpdec librar…
3116 # Check whether _decimal should use a coroutine-local or thread-local context
3119 …AS_HELP_STRING([--with-decimal-contextvar], [build _decimal module using a coroutine-local rather …
3126 …[Define if you want build the _decimal module using a coroutine-local rather than a thread-local c…
Dpyconfig.h.in1527 /* Define if you want build the _decimal module using a coroutine-local rather
DMakefile.pre.in555 '*/Modules/_decimal/libmpdec/*' \
Dconfigure1549 --with-system-libmpdec build _decimal module using an installed libmpdec
1552 build _decimal module using a coroutine-local rather
/external/python/cpython3/Doc/
Dlicense.rst923 The :mod:`_decimal` module is built using an included copy of the libmpdec
/external/python/cpython3/Misc/NEWS.d/
D3.5.0a1.rst3713 _decimal: The module now supports function signatures.
D3.7.0a1.rst3456 Fixed different behaviour of Decimal.from_float() for _decimal and
/external/python/cpython3/Doc/whatsnew/
D3.3.rst1112 | | decimal.py | _decimal | speedup |
/external/python/cpython3/Misc/
DHISTORY6519 - Issue #15882: Change `_decimal` to accept any coefficient tuple when
6521 decimal.py: Infinity coefficients are undefined in _decimal (in accordance
6541 - _decimal module: use only C 89 style comments.
6744 - Issue #15511: Drop explicit dependency on pythonxy.lib from _decimal amd64
7208 - Speed up _decimal by another 10-15% by caching the thread local context
7210 _decimal is now only 1.5x slower than float.
8032 the _decimal module against an installed libmpdec.