Searched refs:strtod (Results 1 - 25 of 76) sorted by relevance

1234

/external/chromium/base/third_party/dmg_fp/
H A Ddmg_fp.h14 double strtod(const char* s00, char** se);
/external/mesa3d/src/glsl/
H A Dstrtod.c36 #include "strtod.h"
41 * Wrapper around strtod which uses the "C" locale so the decimal
54 return strtod(s, end);
/external/webkit/Source/JavaScriptCore/wtf/
H A Ddtoa.h33 double strtod(const char* s00, char** se);
/external/llvm/lib/Support/
H A DFileUtilities.cpp104 V1 = strtod(F1P, const_cast<char**>(&F1NumEnd));
105 V2 = strtod(F2P, const_cast<char**>(&F2NumEnd));
113 V1 = strtod(&StrTmp[0], const_cast<char**>(&F1NumEnd));
123 V2 = strtod(&StrTmp[0], const_cast<char**>(&F2NumEnd));
/external/valgrind/main/none/tests/ppc32/
H A Dpower5+_round.c52 inf = strtod("inf", NULL);
53 neg0 = strtod("-0", NULL);
54 nan = strtod("nan", NULL);
/external/iproute2/tc/
H A Dtc_util.c149 double bps = strtod(str, &p);
232 t = strtod(str, &p);
283 sz = strtod(str, &p);
360 double per = strtod(str, &p) / 100.;
/external/valgrind/main/include/
H A Dpub_tool_options.h125 double n = VG_(strtod)( val, &s ); \
H A Dpub_tool_libcbase.h71 extern double VG_(strtod) ( Char* str, Char** endptr );
/external/qemu/
H A Dmigration.c89 d = strtod(value, &ptr);
126 d = strtod(value, &ptr);
/external/chromium/chrome/browser/autofill/
H A Dautofill_xml_parser.cc138 double value = strtod(attribute, &attr_end);
/external/icu4c/common/
H A Dcstring.h62 #define uprv_strtod(source, end) U_STANDARD_CPP_NAMESPACE strtod(source, end)
/external/iptables/extensions/
H A Dlibxt_RATEEST.c50 t = strtod(str, &p);
/external/srec/portable/include/
H A Dptypes.h290 * LCHAR version of strtod()
292 #define LSTRTOD strtod
/external/stlport/stlport/stl/
H A D_cstdlib.h80 using _STLP_VENDOR_CSTD::strtod;
/external/dbus/dbus/
H A Ddbus-sysdeps.c605 /* Calls strtod in a locale-independent fashion, by looking at
614 /* FIXME: The Win32 C library's strtod() doesn't handle hex.
720 val = strtod (copy, &fail_pos);
734 val = strtod (nptr, &fail_pos);
/external/chromium/net/tools/flip_server/
H A Doutput_ordering.cc100 double tmp_think_time_in_s = strtod(x_server_latency.c_str(), &endp);
/external/chromium/third_party/libjingle/source/talk/base/
H A Dflags.cc240 *flag->float_variable() = strtod(value, &endp);
/external/llvm/examples/Kaleidoscope/Chapter2/
H A Dtoy.cpp51 NumVal = strtod(NumStr.c_str(), 0);
/external/protobuf/src/google/protobuf/stubs/
H A Dstrutil.cc940 // over-precise, then parse the result with strtod() to see if it
955 // one in that it makes guesses and then uses strtod() to check them.
1039 volatile double parsed_value = strtod(buffer, NULL);
1056 *value = strtod(str, &endptr);
1138 double result = strtod(text, &temp_endptr);
1148 result = strtod(localized_cstr, &localized_endptr);
1156 // const_cast is necessary to match the strtod() interface.
/external/skia/samplecode/
H A DSamplePath.cpp50 float x = (float)strtod("9.94099e+07", NULL);
/external/skia/src/utils/
H A DSkParse.cpp214 float v = (float)strtod(str, &stop);
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dfloat-weight.h105 float f = strtod(s.c_str(), &p);
/external/webkit/Tools/DumpRenderTree/cg/
H A DImageDiffCG.cpp67 return strtod(nptr, endptr);
/external/webkit/Tools/DumpRenderTree/win/
H A DImageDiffCairo.cpp58 return strtod(inputString, endptr);
/external/mesa3d/
H A DAndroid.mk100 src/glsl/strtod.c \

Completed in 663 milliseconds

1234