Searched defs:dtoa (Results 1 - 1 of 1) sorted by relevance

/external/webkit/Source/JavaScriptCore/wtf/
H A Ddtoa.cpp26 * before invoking strtod or dtoa. If the machine uses (the equivalent
65 #include "dtoa.h"
161 // 64-bit emulation provided by the compiler is likely to be slower than dtoa own code on 32-bit hardware.
1277 /* dtoa for IEEE arithmetic (dmg): convert double to ASCII string.
1313 void dtoa(DtoaBuffer result, double dd, int ndigits, bool& signOut, int& exponentOut, unsigned& precisionOut) function in namespace:WTF
1787 void dtoa(DtoaBuffer result, double dd, bool& sign, int& exponent, unsigned& precision) function
1790 dtoa<true, false, false, true>(result, dd, 0, sign, exponent, precision);
1796 dtoa<false, true, false, false>(result, dd, ndigits, sign, exponent, precision);
1802 dtoa<false, false, true, false>(result, dd, ndigits, sign, exponent, precision);

Completed in 44 milliseconds