escargot/third_party/double_conversion
HyukWoo Park d839f87b0b Update Number builtin methods based on ES10
* toFixed, toExponential and toPrecision builtins of Number.prototype updated
* expand buffer size according to the digit range

Signed-off-by: HyukWoo Park <hyukwoo.park@samsung.com>
2020-04-03 13:44:57 +09:00
..
bignum-dtoa.cc Clear up redundant submodules and script files 2019-11-07 14:37:25 +09:00
bignum-dtoa.h Clear up redundant submodules and script files 2019-11-07 14:37:25 +09:00
bignum.cc Clear up redundant submodules and script files 2019-11-07 14:37:25 +09:00
bignum.h Clear up redundant submodules and script files 2019-11-07 14:37:25 +09:00
cached-powers.cc Clear up redundant submodules and script files 2019-11-07 14:37:25 +09:00
cached-powers.h Clear up redundant submodules and script files 2019-11-07 14:37:25 +09:00
diy-fp.cc Clear up redundant submodules and script files 2019-11-07 14:37:25 +09:00
diy-fp.h Clear up redundant submodules and script files 2019-11-07 14:37:25 +09:00
double-conversion.cc Update Number builtin methods based on ES10 2020-04-03 13:44:57 +09:00
double-conversion.h Update Number builtin methods based on ES10 2020-04-03 13:44:57 +09:00
fast-dtoa.cc Clear up redundant submodules and script files 2019-11-07 14:37:25 +09:00
fast-dtoa.h Clear up redundant submodules and script files 2019-11-07 14:37:25 +09:00
fixed-dtoa.cc Clear up redundant submodules and script files 2019-11-07 14:37:25 +09:00
fixed-dtoa.h Clear up redundant submodules and script files 2019-11-07 14:37:25 +09:00
ieee.h Clear up redundant submodules and script files 2019-11-07 14:37:25 +09:00
LICENSE Clear up redundant submodules and script files 2019-11-07 14:37:25 +09:00
README Clear up redundant submodules and script files 2019-11-07 14:37:25 +09:00
SConscript Clear up redundant submodules and script files 2019-11-07 14:37:25 +09:00
strtod.cc Clear up redundant submodules and script files 2019-11-07 14:37:25 +09:00
strtod.h Clear up redundant submodules and script files 2019-11-07 14:37:25 +09:00
utils.h Clear up redundant submodules and script files 2019-11-07 14:37:25 +09:00

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.