├── .gitignore ├── license.txt ├── readme.md ├── result ├── corei7920@2.67_cygwin32_gcc4.8.csv ├── corei7920@2.67_cygwin32_gcc4.8.html ├── corei7920@2.67_cygwin64_gcc4.8.csv ├── corei7920@2.67_cygwin64_gcc4.8.html ├── corei7920@2.67_win32_vc2013.csv ├── corei7920@2.67_win32_vc2013.html ├── corei7920@2.67_win64_vc2013.csv ├── corei7920@2.67_win64_vc2013.html ├── corei7920@2.67_win64_vc2013_randomdigit_time.png ├── corei7920@2.67_win64_vc2013_randomdigit_timedigit.png ├── makefile ├── template.php ├── unknown_mac32_clang7.0.csv ├── unknown_mac32_clang7.0.html ├── unknown_mac64_clang7.0.csv └── unknown_mac64_clang7.0.html ├── src ├── double-conversion │ ├── LICENSE │ ├── 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 ├── doubleconvtest.cpp ├── emyg │ ├── emyg_dtoa.c │ └── emyg_dtoa.h ├── emygtest.cpp ├── floaxie │ ├── atof.h │ ├── bit_ops.h │ ├── cached_power.h │ ├── conversion_status.h │ ├── default_fallback.h │ ├── diy_fp.h │ ├── fraction.h │ ├── ftoa.h │ ├── grisu.h │ ├── huge_val.h │ ├── integer_of_size.h │ ├── k_comp.h │ ├── krosh.h │ ├── memwrap.h │ ├── powers_ten.h │ ├── powers_ten_double.h │ ├── powers_ten_single.h │ ├── prettify.h │ ├── print.h │ ├── static_pow.h │ └── type_punning_cast.h ├── floaxietest.cpp ├── fpconv │ ├── fpconv.c │ ├── fpconv.h │ ├── license │ └── powers.h ├── fpconvtest.cpp ├── gay │ ├── dtoa.c │ └── g_fmt.c ├── gaytest.cpp ├── grisu │ ├── LICENSE │ ├── diy_fp.h │ ├── double.h │ ├── fast_exponent.h │ ├── grisu2.h │ ├── grisu2b_59_56.c │ ├── k_comp.h │ ├── powers.h │ ├── powers_ten_round64.h │ └── prettify.h ├── grisu2btest.cpp ├── main.cpp ├── milo │ └── dtoa_milo.h ├── milotest.cpp ├── msinttypes │ ├── inttypes.h │ └── stdint.h ├── null.cpp ├── ostringstream.cpp ├── ostrstream.cpp ├── resultfilename.h ├── sprintf.cpp ├── test.h └── timer.h ├── stb_sprintf.cpp └── stb_sprintf └── stb_sprintf.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/.gitignore -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/license.txt -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/readme.md -------------------------------------------------------------------------------- /result/corei7920@2.67_cygwin32_gcc4.8.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/result/corei7920@2.67_cygwin32_gcc4.8.csv -------------------------------------------------------------------------------- /result/corei7920@2.67_cygwin32_gcc4.8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/result/corei7920@2.67_cygwin32_gcc4.8.html -------------------------------------------------------------------------------- /result/corei7920@2.67_cygwin64_gcc4.8.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/result/corei7920@2.67_cygwin64_gcc4.8.csv -------------------------------------------------------------------------------- /result/corei7920@2.67_cygwin64_gcc4.8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/result/corei7920@2.67_cygwin64_gcc4.8.html -------------------------------------------------------------------------------- /result/corei7920@2.67_win32_vc2013.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/result/corei7920@2.67_win32_vc2013.csv -------------------------------------------------------------------------------- /result/corei7920@2.67_win32_vc2013.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/result/corei7920@2.67_win32_vc2013.html -------------------------------------------------------------------------------- /result/corei7920@2.67_win64_vc2013.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/result/corei7920@2.67_win64_vc2013.csv -------------------------------------------------------------------------------- /result/corei7920@2.67_win64_vc2013.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/result/corei7920@2.67_win64_vc2013.html -------------------------------------------------------------------------------- /result/corei7920@2.67_win64_vc2013_randomdigit_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/result/corei7920@2.67_win64_vc2013_randomdigit_time.png -------------------------------------------------------------------------------- /result/corei7920@2.67_win64_vc2013_randomdigit_timedigit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/result/corei7920@2.67_win64_vc2013_randomdigit_timedigit.png -------------------------------------------------------------------------------- /result/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/result/makefile -------------------------------------------------------------------------------- /result/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/result/template.php -------------------------------------------------------------------------------- /result/unknown_mac32_clang7.0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/result/unknown_mac32_clang7.0.csv -------------------------------------------------------------------------------- /result/unknown_mac32_clang7.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/result/unknown_mac32_clang7.0.html -------------------------------------------------------------------------------- /result/unknown_mac64_clang7.0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/result/unknown_mac64_clang7.0.csv -------------------------------------------------------------------------------- /result/unknown_mac64_clang7.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/result/unknown_mac64_clang7.0.html -------------------------------------------------------------------------------- /src/double-conversion/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/double-conversion/LICENSE -------------------------------------------------------------------------------- /src/double-conversion/bignum-dtoa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/double-conversion/bignum-dtoa.cc -------------------------------------------------------------------------------- /src/double-conversion/bignum-dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/double-conversion/bignum-dtoa.h -------------------------------------------------------------------------------- /src/double-conversion/bignum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/double-conversion/bignum.cc -------------------------------------------------------------------------------- /src/double-conversion/bignum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/double-conversion/bignum.h -------------------------------------------------------------------------------- /src/double-conversion/cached-powers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/double-conversion/cached-powers.cc -------------------------------------------------------------------------------- /src/double-conversion/cached-powers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/double-conversion/cached-powers.h -------------------------------------------------------------------------------- /src/double-conversion/diy-fp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/double-conversion/diy-fp.cc -------------------------------------------------------------------------------- /src/double-conversion/diy-fp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/double-conversion/diy-fp.h -------------------------------------------------------------------------------- /src/double-conversion/double-conversion.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/double-conversion/double-conversion.cc -------------------------------------------------------------------------------- /src/double-conversion/double-conversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/double-conversion/double-conversion.h -------------------------------------------------------------------------------- /src/double-conversion/fast-dtoa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/double-conversion/fast-dtoa.cc -------------------------------------------------------------------------------- /src/double-conversion/fast-dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/double-conversion/fast-dtoa.h -------------------------------------------------------------------------------- /src/double-conversion/fixed-dtoa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/double-conversion/fixed-dtoa.cc -------------------------------------------------------------------------------- /src/double-conversion/fixed-dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/double-conversion/fixed-dtoa.h -------------------------------------------------------------------------------- /src/double-conversion/ieee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/double-conversion/ieee.h -------------------------------------------------------------------------------- /src/double-conversion/strtod.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/double-conversion/strtod.cc -------------------------------------------------------------------------------- /src/double-conversion/strtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/double-conversion/strtod.h -------------------------------------------------------------------------------- /src/double-conversion/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/double-conversion/utils.h -------------------------------------------------------------------------------- /src/doubleconvtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/doubleconvtest.cpp -------------------------------------------------------------------------------- /src/emyg/emyg_dtoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/emyg/emyg_dtoa.c -------------------------------------------------------------------------------- /src/emyg/emyg_dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/emyg/emyg_dtoa.h -------------------------------------------------------------------------------- /src/emygtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/emygtest.cpp -------------------------------------------------------------------------------- /src/floaxie/atof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/floaxie/atof.h -------------------------------------------------------------------------------- /src/floaxie/bit_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/floaxie/bit_ops.h -------------------------------------------------------------------------------- /src/floaxie/cached_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/floaxie/cached_power.h -------------------------------------------------------------------------------- /src/floaxie/conversion_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/floaxie/conversion_status.h -------------------------------------------------------------------------------- /src/floaxie/default_fallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/floaxie/default_fallback.h -------------------------------------------------------------------------------- /src/floaxie/diy_fp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/floaxie/diy_fp.h -------------------------------------------------------------------------------- /src/floaxie/fraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/floaxie/fraction.h -------------------------------------------------------------------------------- /src/floaxie/ftoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/floaxie/ftoa.h -------------------------------------------------------------------------------- /src/floaxie/grisu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/floaxie/grisu.h -------------------------------------------------------------------------------- /src/floaxie/huge_val.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/floaxie/huge_val.h -------------------------------------------------------------------------------- /src/floaxie/integer_of_size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/floaxie/integer_of_size.h -------------------------------------------------------------------------------- /src/floaxie/k_comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/floaxie/k_comp.h -------------------------------------------------------------------------------- /src/floaxie/krosh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/floaxie/krosh.h -------------------------------------------------------------------------------- /src/floaxie/memwrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/floaxie/memwrap.h -------------------------------------------------------------------------------- /src/floaxie/powers_ten.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/floaxie/powers_ten.h -------------------------------------------------------------------------------- /src/floaxie/powers_ten_double.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/floaxie/powers_ten_double.h -------------------------------------------------------------------------------- /src/floaxie/powers_ten_single.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/floaxie/powers_ten_single.h -------------------------------------------------------------------------------- /src/floaxie/prettify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/floaxie/prettify.h -------------------------------------------------------------------------------- /src/floaxie/print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/floaxie/print.h -------------------------------------------------------------------------------- /src/floaxie/static_pow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/floaxie/static_pow.h -------------------------------------------------------------------------------- /src/floaxie/type_punning_cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/floaxie/type_punning_cast.h -------------------------------------------------------------------------------- /src/floaxietest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/floaxietest.cpp -------------------------------------------------------------------------------- /src/fpconv/fpconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/fpconv/fpconv.c -------------------------------------------------------------------------------- /src/fpconv/fpconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/fpconv/fpconv.h -------------------------------------------------------------------------------- /src/fpconv/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/fpconv/license -------------------------------------------------------------------------------- /src/fpconv/powers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/fpconv/powers.h -------------------------------------------------------------------------------- /src/fpconvtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/fpconvtest.cpp -------------------------------------------------------------------------------- /src/gay/dtoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/gay/dtoa.c -------------------------------------------------------------------------------- /src/gay/g_fmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/gay/g_fmt.c -------------------------------------------------------------------------------- /src/gaytest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/gaytest.cpp -------------------------------------------------------------------------------- /src/grisu/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/grisu/LICENSE -------------------------------------------------------------------------------- /src/grisu/diy_fp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/grisu/diy_fp.h -------------------------------------------------------------------------------- /src/grisu/double.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/grisu/double.h -------------------------------------------------------------------------------- /src/grisu/fast_exponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/grisu/fast_exponent.h -------------------------------------------------------------------------------- /src/grisu/grisu2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/grisu/grisu2.h -------------------------------------------------------------------------------- /src/grisu/grisu2b_59_56.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/grisu/grisu2b_59_56.c -------------------------------------------------------------------------------- /src/grisu/k_comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/grisu/k_comp.h -------------------------------------------------------------------------------- /src/grisu/powers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/grisu/powers.h -------------------------------------------------------------------------------- /src/grisu/powers_ten_round64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/grisu/powers_ten_round64.h -------------------------------------------------------------------------------- /src/grisu/prettify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/grisu/prettify.h -------------------------------------------------------------------------------- /src/grisu2btest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/grisu2btest.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/milo/dtoa_milo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/milo/dtoa_milo.h -------------------------------------------------------------------------------- /src/milotest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/milotest.cpp -------------------------------------------------------------------------------- /src/msinttypes/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/msinttypes/inttypes.h -------------------------------------------------------------------------------- /src/msinttypes/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/msinttypes/stdint.h -------------------------------------------------------------------------------- /src/null.cpp: -------------------------------------------------------------------------------- 1 | #include "test.h" 2 | 3 | void dtoa_null(double, char*) { 4 | } 5 | 6 | REGISTER_TEST(null); 7 | -------------------------------------------------------------------------------- /src/ostringstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/ostringstream.cpp -------------------------------------------------------------------------------- /src/ostrstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/ostrstream.cpp -------------------------------------------------------------------------------- /src/resultfilename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/resultfilename.h -------------------------------------------------------------------------------- /src/sprintf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/sprintf.cpp -------------------------------------------------------------------------------- /src/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/test.h -------------------------------------------------------------------------------- /src/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/src/timer.h -------------------------------------------------------------------------------- /stb_sprintf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/stb_sprintf.cpp -------------------------------------------------------------------------------- /stb_sprintf/stb_sprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miloyip/dtoa-benchmark/HEAD/stb_sprintf/stb_sprintf.h --------------------------------------------------------------------------------