Home | History | Annotate | only in /external/chromium/base/third_party/dmg_fp
Up to higher level directory
NameDateSize
dmg_fp.h19-Dec-20101,011
dtoa.cc19-Dec-201083.2K
g_fmt.cc19-Dec-20102.1K
gcc_64_bit.patch19-Dec-2010585
gcc_warnings.patch19-Dec-20102.5K
README.chromium19-Dec-2010700

README.chromium

      1 This directory contains David M. Gay's floating point routines.
      2 License can be found in individual .cc files.
      3 
      4 Original dtoa.c file can be found at <http://www.netlib.org/fp/dtoa.c>.
      5 Original g_fmt.c file can be found at <http://www.netlib.org/fp/g_fmt.c>.
      6 You may be also interested in <http://www.netlib.org/fp/>.
      7 
      8 List 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