/external/webkit/Source/WebCore/ForwardingHeaders/wtf/ |
dtoa.h | 3 #include <JavaScriptCore/dtoa.h>
|
/external/chromium/base/third_party/dmg_fp/ |
gcc_64_bit.patch | 1 Index: dtoa.cc 2 --- dtoa.cc (old copy) 3 +++ dtoa.cc (working copy)
|
README.chromium | 4 Original dtoa.c file can be found at <http://www.netlib.org/fp/dtoa.c>. 11 - added #define IEEE_8087 to dtoa.cc 12 - added #define NO_HEX_FP to dtoa.cc
|
ThirdPartyProject.prop | 6 homepage=http://www.netlib.org/fp/dtoa.c
|
Android.mk | 11 base/third_party/dmg_fp/dtoa.cc \
|
dtoa_wrapper.cc | 6 // to make third_party/dmg_fp/dtoa.cc threadsafe. 16 * in dtoa.cc, per this comment from the file: 26 * dtoa. You may do so whether or not MULTIPLE_THREADS is #defined. 40 #include "base/third_party/dmg_fp/dtoa.cc"
|
dmg_fp.h | 17 // see dtoa.cc file. 18 char* dtoa(double d, int mode, int ndigits, 21 // Must be used to free values returned by dtoa.
|
gcc_warnings.patch | 1 Index: dtoa.cc 2 --- dtoa.cc (old copy) 3 +++ dtoa.cc (working copy) 31 -extern "C" char *dtoa(double d, int mode, int ndigits, 33 +char *dtoa(double d, int mode, int ndigits,
|
mac_wextra.patch | 32 Index: dtoa.cc 34 --- dtoa.cc (revision 49784) 35 +++ dtoa.cc (working copy)
|
g_fmt.cc | 45 s = s0 = dtoa(x, 0, 0, &decpt, &sign, &se);
|
/external/v8/src/ |
dtoa.cc | 31 #include "dtoa.h" 33 #include "bignum-dtoa.h" 35 #include "fast-dtoa.h" 36 #include "fixed-dtoa.h" 97 // If the fast dtoa didn't succeed use the slower bignum version.
|
/external/v8/test/cctest/ |
gay-fixed.h | 41 // Returns precomputed values of dtoa. The strings have been generated using 42 // Gay's dtoa in mode "fixed".
|
gay-precision.h | 41 // Returns precomputed values of dtoa. The strings have been generated using 42 // Gay's dtoa in mode "precision".
|
SConscript | 44 'test-bignum-dtoa.cc', 56 'test-dtoa.cc', 57 'test-fast-dtoa.cc', 58 'test-fixed-dtoa.cc',
|
cctest.gyp | 74 'test-bignum-dtoa.cc', 85 'test-dtoa.cc', 86 'test-fast-dtoa.cc', 87 'test-fixed-dtoa.cc',
|
/external/v8/ |
Android.v8common.mk | 10 src/bignum-dtoa.cc \ 31 src/dtoa.cc \ 36 src/fast-dtoa.cc \ 37 src/fixed-dtoa.cc \
|
/external/webkit/Source/JavaScriptCore/wtf/ |
wtf.pri | 9 wtf/dtoa.cpp \
|
CMakeLists.txt | 93 dtoa.h 130 dtoa.cpp
|
DecimalNumber.h | 30 #include <wtf/dtoa.h> 44 dtoa(m_significand, d, m_sign, m_exponent, m_precision);
|
dtoa.h | 37 void dtoa(DtoaBuffer result, double dd, bool& sign, int& exponent, unsigned& precision);
|
/external/v8/test/mjsunit/ |
dtoa.js | 28 // dtoa.c used to contain a bogus assertions that got triggered when
|
/external/webkit/Source/JavaScriptCore/ |
Android.v8.wtf.mk | 54 wtf/dtoa.cpp \
|
/external/webkit/Source/JavaScriptCore/runtime/ |
InitializeThreading.cpp | 33 #include "dtoa.h"
|
/external/v8/tools/visual_studio/ |
v8_base_arm.vcproj | 220 RelativePath="..\..\src\bignum-dtoa.cc" 224 RelativePath="..\..\src\bignum-dtoa.h" 456 RelativePath="..\..\src\dtoa.cc" 460 RelativePath="..\..\src\dtoa.h" 480 RelativePath="..\..\src\fast-dtoa.cc" 484 RelativePath="..\..\src\fast-dtoa.h" 488 RelativePath="..\..\src\fixed-dtoa.cc" 492 RelativePath="..\..\src\fixed-dtoa.h"
|
/external/webkit/Source/WebCore/html/parser/ |
HTMLParserIdioms.cpp | 30 #include <wtf/dtoa.h> 131 // Not using String.toInt() in order to perform the same computation as dtoa() does.
|