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

/external/webkit/Source/WebCore/ForwardingHeaders/wtf/
H A Ddtoa.h3 #include <JavaScriptCore/dtoa.h>
/external/chromium/base/third_party/dmg_fp/
H A Ddmg_fp.h17 // see dtoa.cc file.
18 char* dtoa(double d, int mode, int ndigits,
21 // Must be used to free values returned by dtoa.
H A DAndroid.mk11 base/third_party/dmg_fp/dtoa.cc \
H A Dg_fmt.cc45 s = s0 = dtoa(x, 0, 0, &decpt, &sign, &se);
H A Ddtoa.cc25 * before invoking strtod or dtoa. If the machine uses (the equivalent
73 * computation of dtoa.
75 * and strtod and dtoa should round accordingly. Unless Trust_FLT_ROUNDS
110 * pathological cases, e.g., in a dtoa call after a dtoa return in
118 * digits. The longest string dtoa can return is about 751 bytes
120 * all dtoa conversions in single-threaded executions with 8-byte
148 * dtoa. You may do so whether or not MULTIPLE_THREADS is #defined.
159 * is exact. In this case, dtoa.c must be compiled in
160 * an environment, perhaps provided by #include "dtoa
[all...]
/external/webkit/Source/JavaScriptCore/wtf/
H A Ddtoa.h37 void dtoa(DtoaBuffer result, double dd, bool& sign, int& exponent, unsigned& precision);
H A DDecimalNumber.h30 #include <wtf/dtoa.h>
44 dtoa(m_significand, d, m_sign, m_exponent, m_precision);
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);
/external/v8/
H A DAndroid.v8common.mk10 src/bignum-dtoa.cc \
31 src/dtoa.cc \
36 src/fast-dtoa.cc \
37 src/fixed-dtoa.cc \
/external/webkit/Source/JavaScriptCore/
H A DAndroid.v8.wtf.mk54 wtf/dtoa.cpp \
H A DAndroid.mk194 wtf/dtoa.cpp \
/external/webkit/Source/WebCore/html/parser/
H A DHTMLParserIdioms.cpp30 #include <wtf/dtoa.h>
131 // Not using String.toInt() in order to perform the same computation as dtoa() does.
/external/webkit/Source/WebCore/storage/
H A DIDBKeyPath.cpp32 #include <wtf/dtoa.h>
/external/webkit/Source/JavaScriptCore/runtime/
H A DLiteralParser.cpp34 #include <wtf/dtoa.h>
/external/webkit/Source/JavaScriptCore/wtf/text/
H A DWTFString.cpp30 #include <wtf/dtoa.h>
/external/webkit/Source/WebCore/css/
H A DCSSParser.cpp77 #include <wtf/dtoa.h>

Completed in 240 milliseconds