Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
LICENSE | D | 03-May-2024 | 862 | 19 | 18 | |
README.chromium | D | 03-May-2024 | 983 | 23 | 20 | |
dmg_fp.h | D | 03-May-2024 | 1,011 | 31 | 10 | |
dtoa.cc | D | 03-May-2024 | 83.5 KiB | 4,216 | 3,642 | |
dtoa_wrapper.cc | D | 03-May-2024 | 1.8 KiB | 47 | 19 | |
float_precision_crash.patch | D | 03-May-2024 | 374 | 14 | 13 | |
g_fmt.cc | D | 03-May-2024 | 2.1 KiB | 103 | 73 | |
gcc_64_bit.patch | D | 03-May-2024 | 585 | 26 | 23 | |
gcc_warnings.patch | D | 03-May-2024 | 2.5 KiB | 127 | 118 | |
mac_wextra.patch | D | 03-May-2024 | 1.2 KiB | 54 | 53 | |
vs2013-optimization.patch | D | 03-May-2024 | 645 | 19 | 16 | |
win_vs2012.patch | D | 03-May-2024 | 331 | 14 | 13 |
README.chromium
1Name: David M. Gay's floating point routines 2URL: http://www.netlib.org/fp/ 3License: MIT-like 4 5Original dtoa.c file can be found at <http://www.netlib.org/fp/dtoa.c>. 6Original g_fmt.c file can be found at <http://www.netlib.org/fp/g_fmt.c>. 7 8List of changes made to original code: 9 - wrapped functions in dmg_fp namespace 10 - renamed .c files to .cc 11 - added dmg_fp.h header 12 - added #define IEEE_8087 to dtoa.cc 13 - added #define NO_HEX_FP to dtoa.cc 14 - made some minor changes to allow clean compilation under g++ -Wall, see 15 gcc_warnings.patch. 16 - made some minor changes to build on 64-bit, see gcc_64_bit.patch. 17 - made minor changes for -Wextra for Mac build, see mac_wextra.patch 18 - crash fix for running with reduced CPU float precision, see 19 float_precision_crash.patch and crbug.com/123157 20 - Fix for 'warning C4703: potentially uninitialized local pointer variable' 21 in VS2012. 22 - Disable optimization on VS2013 pending fix of compiler optimization bug. 23