Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/_decimal/tests/
Drunall-memorydebugger.sh78 $GMAKE | grep _decimal
90 $GMAKE | grep _decimal
110 $GMAKE | grep _decimal
115 cd Modules/_decimal
134 $GMAKE | grep _decimal
137 ./python Modules/_decimal/tests/deccheck.py
145 $GMAKE | grep _decimal
148 ./python Modules/_decimal/tests/deccheck.py
165 $GMAKE | grep _decimal
168 $valgrind ./python Modules/_decimal/tests/deccheck.py
Drunall.bat76 python_d.exe ..\..\Modules\_decimal\tests\deccheck.py
82 python.exe ..\..\Modules\_decimal\tests\deccheck.py
97 python_d.exe ..\Modules\_decimal\tests\deccheck.py
103 python.exe ..\Modules\_decimal\tests\deccheck.py
108 cd ..\Modules\_decimal\tests
/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.txt33 set(_decimal 0) variable
36 math(EXPR _decimal "${_decimal} * 16")
40 math(EXPR _decimal "${_decimal} + 10")
42 math(EXPR _decimal "${_decimal} + 11")
44 math(EXPR _decimal "${_decimal} + 12")
46 math(EXPR _decimal "${_decimal} + 13")
48 math(EXPR _decimal "${_decimal} + 14")
50 math(EXPR _decimal "${_decimal} + 15")
52 math(EXPR _decimal "${_decimal} + ${_digit}")
56 set(${DECIMAL} ${_decimal} PARENT_SCOPE)
/external/fonttools/Lib/fontTools/misc/
Dpy23.py340 import decimal as _decimal namespace
367 exponent = _decimal.Decimal('10') ** (-ndigits)
369 d = _decimal.Decimal.from_float(number).quantize(
370 exponent, rounding=_decimal.ROUND_HALF_UP)
438 exponent = _decimal.Decimal('10') ** (-ndigits) if ndigits != 0 else 1
440 d = _decimal.Decimal.from_float(number).quantize(
441 exponent, rounding=_decimal.ROUND_HALF_EVEN)
/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.py489 import _decimal
494 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:
1455 .. _decimal-rounding-modes:
1519 .. _decimal-signals:
1659 .. _decimal-notes:
1773 .. _decimal-threads:
1811 .. _decimal-recipes:
1968 .. _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.txt135 _decimal
Dpcbuild.sln22 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_decimal", "_decimal.vcxproj", "{0E9791DB-593A…
/external/python/cpython3/Doc/
Dlicense.rst889 The :mod:`_decimal` module is built using an included copy of the libmpdec
/external/python/cpython3/
DMakefile.pre.in543 '*/Modules/_decimal/libmpdec/*' \
Dconfigure.ac3009 …AS_HELP_STRING([--with-system-libmpdec], [build _decimal module using an installed libmpdec librar…
Dconfigure1534 --with-system-libmpdec build _decimal module using an installed libmpdec
/external/python/cpython3/Doc/whatsnew/
D3.3.rst1112 | | decimal.py | _decimal | speedup |
/external/python/cpython3/Misc/NEWS.d/
D3.5.0a1.rst3713 _decimal: The module now supports function signatures.
D3.7.0a1.rst3461 Fixed different behaviour of Decimal.from_float() for _decimal and
/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.