├── .gitignore ├── BenchmarkFloatConv ├── BenchmarkFloatConv.sln └── BenchmarkFloatConv │ ├── BenchmarkFloatConv.cpp │ ├── BenchmarkFloatConv.vcxproj │ ├── BenchmarkFloatConv.vcxproj.user │ ├── Makefile │ └── google_double_conversion │ ├── CMakeLists.txt │ ├── SConscript │ ├── bignum-dtoa.cc │ ├── bignum-dtoa.h │ ├── bignum.cc │ ├── bignum.h │ ├── cached-powers.cc │ ├── cached-powers.h │ ├── 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 │ ├── strtod.cc │ ├── strtod.h │ └── utils.h ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/floatbench/HEAD/.gitignore -------------------------------------------------------------------------------- /BenchmarkFloatConv/BenchmarkFloatConv.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/floatbench/HEAD/BenchmarkFloatConv/BenchmarkFloatConv.sln -------------------------------------------------------------------------------- /BenchmarkFloatConv/BenchmarkFloatConv/BenchmarkFloatConv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/floatbench/HEAD/BenchmarkFloatConv/BenchmarkFloatConv/BenchmarkFloatConv.cpp -------------------------------------------------------------------------------- /BenchmarkFloatConv/BenchmarkFloatConv/BenchmarkFloatConv.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/floatbench/HEAD/BenchmarkFloatConv/BenchmarkFloatConv/BenchmarkFloatConv.vcxproj -------------------------------------------------------------------------------- /BenchmarkFloatConv/BenchmarkFloatConv/BenchmarkFloatConv.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/floatbench/HEAD/BenchmarkFloatConv/BenchmarkFloatConv/BenchmarkFloatConv.vcxproj.user -------------------------------------------------------------------------------- /BenchmarkFloatConv/BenchmarkFloatConv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/floatbench/HEAD/BenchmarkFloatConv/BenchmarkFloatConv/Makefile -------------------------------------------------------------------------------- /BenchmarkFloatConv/BenchmarkFloatConv/google_double_conversion/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/floatbench/HEAD/BenchmarkFloatConv/BenchmarkFloatConv/google_double_conversion/CMakeLists.txt -------------------------------------------------------------------------------- /BenchmarkFloatConv/BenchmarkFloatConv/google_double_conversion/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/floatbench/HEAD/BenchmarkFloatConv/BenchmarkFloatConv/google_double_conversion/SConscript -------------------------------------------------------------------------------- /BenchmarkFloatConv/BenchmarkFloatConv/google_double_conversion/bignum-dtoa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/floatbench/HEAD/BenchmarkFloatConv/BenchmarkFloatConv/google_double_conversion/bignum-dtoa.cc -------------------------------------------------------------------------------- /BenchmarkFloatConv/BenchmarkFloatConv/google_double_conversion/bignum-dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/floatbench/HEAD/BenchmarkFloatConv/BenchmarkFloatConv/google_double_conversion/bignum-dtoa.h -------------------------------------------------------------------------------- /BenchmarkFloatConv/BenchmarkFloatConv/google_double_conversion/bignum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/floatbench/HEAD/BenchmarkFloatConv/BenchmarkFloatConv/google_double_conversion/bignum.cc -------------------------------------------------------------------------------- /BenchmarkFloatConv/BenchmarkFloatConv/google_double_conversion/bignum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/floatbench/HEAD/BenchmarkFloatConv/BenchmarkFloatConv/google_double_conversion/bignum.h -------------------------------------------------------------------------------- /BenchmarkFloatConv/BenchmarkFloatConv/google_double_conversion/cached-powers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/floatbench/HEAD/BenchmarkFloatConv/BenchmarkFloatConv/google_double_conversion/cached-powers.cc -------------------------------------------------------------------------------- /BenchmarkFloatConv/BenchmarkFloatConv/google_double_conversion/cached-powers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/floatbench/HEAD/BenchmarkFloatConv/BenchmarkFloatConv/google_double_conversion/cached-powers.h -------------------------------------------------------------------------------- /BenchmarkFloatConv/BenchmarkFloatConv/google_double_conversion/diy-fp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/floatbench/HEAD/BenchmarkFloatConv/BenchmarkFloatConv/google_double_conversion/diy-fp.cc -------------------------------------------------------------------------------- /BenchmarkFloatConv/BenchmarkFloatConv/google_double_conversion/diy-fp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/floatbench/HEAD/BenchmarkFloatConv/BenchmarkFloatConv/google_double_conversion/diy-fp.h -------------------------------------------------------------------------------- /BenchmarkFloatConv/BenchmarkFloatConv/google_double_conversion/double-conversion.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/floatbench/HEAD/BenchmarkFloatConv/BenchmarkFloatConv/google_double_conversion/double-conversion.cc -------------------------------------------------------------------------------- /BenchmarkFloatConv/BenchmarkFloatConv/google_double_conversion/double-conversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/floatbench/HEAD/BenchmarkFloatConv/BenchmarkFloatConv/google_double_conversion/double-conversion.h -------------------------------------------------------------------------------- /BenchmarkFloatConv/BenchmarkFloatConv/google_double_conversion/fast-dtoa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/floatbench/HEAD/BenchmarkFloatConv/BenchmarkFloatConv/google_double_conversion/fast-dtoa.cc -------------------------------------------------------------------------------- /BenchmarkFloatConv/BenchmarkFloatConv/google_double_conversion/fast-dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/floatbench/HEAD/BenchmarkFloatConv/BenchmarkFloatConv/google_double_conversion/fast-dtoa.h -------------------------------------------------------------------------------- /BenchmarkFloatConv/BenchmarkFloatConv/google_double_conversion/fixed-dtoa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/floatbench/HEAD/BenchmarkFloatConv/BenchmarkFloatConv/google_double_conversion/fixed-dtoa.cc -------------------------------------------------------------------------------- /BenchmarkFloatConv/BenchmarkFloatConv/google_double_conversion/fixed-dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/floatbench/HEAD/BenchmarkFloatConv/BenchmarkFloatConv/google_double_conversion/fixed-dtoa.h -------------------------------------------------------------------------------- /BenchmarkFloatConv/BenchmarkFloatConv/google_double_conversion/ieee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/floatbench/HEAD/BenchmarkFloatConv/BenchmarkFloatConv/google_double_conversion/ieee.h -------------------------------------------------------------------------------- /BenchmarkFloatConv/BenchmarkFloatConv/google_double_conversion/strtod.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/floatbench/HEAD/BenchmarkFloatConv/BenchmarkFloatConv/google_double_conversion/strtod.cc -------------------------------------------------------------------------------- /BenchmarkFloatConv/BenchmarkFloatConv/google_double_conversion/strtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/floatbench/HEAD/BenchmarkFloatConv/BenchmarkFloatConv/google_double_conversion/strtod.h -------------------------------------------------------------------------------- /BenchmarkFloatConv/BenchmarkFloatConv/google_double_conversion/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/floatbench/HEAD/BenchmarkFloatConv/BenchmarkFloatConv/google_double_conversion/utils.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/floatbench/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/floatbench/HEAD/README.md --------------------------------------------------------------------------------