gecko/mfbt/double-conversion
Jacek Caban 1cf47033a8 Don't export kBase10MaximalLength.
It's not needed and causes ICE on some GCC versions.
2019-08-12 21:09:46 +02:00
..
add-mfbt-api-markers.patch
bignum-dtoa.cc
bignum-dtoa.h
bignum.cc
bignum.h
cached-powers.cc
cached-powers.h Bug 614188 - Part 2: import double-conversion sources; r=Waldo 2012-03-19 12:22:32 -04:00
diy-fp.cc
diy-fp.h
double-conversion.cc
double-conversion.h
fast-dtoa.cc
fast-dtoa.h
fixed-dtoa.cc
fixed-dtoa.h
ieee.h
LICENSE
README Bug 614188 - Part 2: import double-conversion sources; r=Waldo 2012-03-19 12:22:32 -04:00
strtod.cc Bug 1202568 - Cherry-pick warning fixes from upstream double-conversion. r=Ms2ger 2015-09-05 00:38:04 -07:00
strtod.h
ToPrecision-exponential.patch Bug 608915 - part 1 - extend ToPrecision to tell use whether exponential notation was used; r=Waldo 2013-11-07 12:46:05 -05:00
update.sh
use-mozilla-assertions.patch Bug 887465 - Rewrite double-conversion's assertions in terms of the MOZ_* assertions, and keep wtf (Yarr) from redefining them. r=jwalden 2013-06-27 16:25:42 -07:00
use-StandardInteger.patch
use-static_assert.patch
utils.h

http://code.google.com/p/double-conversion

This project (double-conversion) provides binary-decimal and decimal-binary
routines for IEEE doubles.

The library consists of efficient conversion routines that have been extracted
from the V8 JavaScript engine. The code has been refactored and improved so that
it can be used more easily in other projects.

There is extensive documentation in src/double-conversion.h. Other examples can
be found in test/cctest/test-conversions.cc.