summaryrefslogtreecommitdiffstats
path: root/Modules/_decimal/libmpdec/basearith.h
Commit message (Collapse)AuthorAgeFilesLines
* bpo-40874: Update to libmpdec-2.5.0 (GH-20652)Stefan Krah2020-06-051-8/+4
|
* Update copyright. The four year increment is intentional (to save work).Stefan Krah2013-12-081-1/+1
|
* Issue #16745: Hide symbols in _decimal.so.Stefan Krah2012-12-221-0/+7
|
* Proactive reliability fix for broken FPUs: The base conversion functionsStefan Krah2012-06-301-2/+4
| | | | | | | | | | use log10() to calculate the size of the output array. The current code has been tested on x86/amd64 (and to a lesser extent on qemu-mips qemu-sparc) and produces sufficiently large values for all inputs tested so far (coefficient sizes of 10**18 - 1 are hard to test exhaustively). The new code does not rely on the correctness of log10() and resizes the output arrays if the allocated space is insufficient.
* Issue #7652: Integrate the decimal floating point libmpdec library to speedStefan Krah2012-03-211-0/+213
up the decimal module. Performance gains of the new C implementation are between 12x and 80x, depending on the application.