gecko-dev/mfbt/double-conversion
Nathan Froyd a3fdb565b6 Bug 608915 - part 1 - extend ToPrecision to tell use whether exponential notation was used; r=Waldo 2013-11-07 12:46:05 -05:00
..
LICENSE
README
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
add-mfbt-api-markers.patch Bug 805416 - refactor macros to avoid the need for empty macro arguments. r=Waldo. 2012-10-30 16:12:22 -04:00
bignum-dtoa.cc
bignum-dtoa.h
bignum.cc Bug 878925 - Update double-conversion to latest git revision. r=jwalden 2013-06-27 16:25:32 -07:00
bignum.h
cached-powers.cc
cached-powers.h
diy-fp.cc
diy-fp.h
double-conversion.cc Bug 608915 - part 1 - extend ToPrecision to tell use whether exponential notation was used; r=Waldo 2013-11-07 12:46:05 -05:00
double-conversion.h Bug 608915 - part 1 - extend ToPrecision to tell use whether exponential notation was used; r=Waldo 2013-11-07 12:46:05 -05:00
fast-dtoa.cc Bug 806538 - Update double-conversion and document the version we are at. r=Waldo. 2012-10-30 15:30:08 -04:00
fast-dtoa.h
fixed-dtoa.cc
fixed-dtoa.h
ieee.h
strtod.cc Bug 806538 - Update double-conversion and document the version we are at. r=Waldo. 2012-10-30 15:30:08 -04:00
strtod.h
update.sh Bug 608915 - part 1 - extend ToPrecision to tell use whether exponential notation was used; r=Waldo 2013-11-07 12:46:05 -05:00
use-StandardInteger.patch Bug 872127 - Part 2: Replace mozilla/StandardInteger.h with stdint.h; r=Waldo,ted 2013-07-30 10:25:31 -04:00
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-static_assert.patch Bug 919337: Use static_assert in double_conversion::BitCast. r=waldo 2013-09-29 21:18:26 -07:00
utils.h Bug 919337: Use static_assert in double_conversion::BitCast. r=waldo 2013-09-29 21:18:26 -07:00

README

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.