Home | History | Annotate | Download | only in wtf

Lines Matching defs:dtoa

26  * before invoking strtod or dtoa.  If the machine uses (the equivalent
36 #include "dtoa.h"
100 // 64-bit emulation provided by the compiler is likely to be slower than dtoa own code on 32-bit hardware.
697 /* dtoa for IEEE arithmetic (dmg): convert double to ASCII string.
733 void dtoa(DtoaBuffer result, double dd, int ndigits, bool& signOut, int& exponentOut, unsigned& precisionOut)
1207 void dtoa(DtoaBuffer result, double dd, bool& sign, int& exponent, unsigned& precision)
1210 dtoa<true, false, false, true>(result, dd, 0, sign, exponent, precision);
1216 dtoa<false, true, false, false>(result, dd, ndigits, sign, exponent, precision);
1222 dtoa<false, false, true, false>(result, dd, ndigits, sign, exponent, precision);