Home
last modified time | relevance | path

Searched refs:strtod (Results 1 – 25 of 41) sorted by relevance

12

/aosp12/system/teeui/test/
H A Dteeui_device_config.cpp115 numeric_value = strtod(optarg, NULL); in initFromOptions()
119 numeric_value = strtod(optarg, NULL); in initFromOptions()
123 numeric_value = strtod(optarg, NULL); in initFromOptions()
127 numeric_value = strtod(optarg, NULL); in initFromOptions()
131 numeric_value = strtod(optarg, NULL); in initFromOptions()
135 numeric_value = strtod(optarg, NULL); in initFromOptions()
/aosp12/bionic/libc/include/android/
H A Dlegacy_stdlib_inlines.h60 double d = strtod(nptr, endptr); in strtof()
71 static __inline double atof(const char *nptr) { return (strtod(nptr, NULL)); } in atof()
99 return strtod(__s, __end_ptr); in strtod_l()
/aosp12/system/libbase/include/android-base/
H A Dparsedouble.h54 return ParseFloatingPoint<double, strtod>(s, out, min, max);
59 return ParseFloatingPoint<double, strtod>(s.c_str(), out, min, max);
/aosp12/bionic/tests/
H A Dstdlib_test.cpp555 TEST(stdlib, strtod) { in TEST() argument
556 CheckStrToFloat(strtod); in TEST()
575 ASSERT_EQ(2.2250738585072014e-308, strtod("2.2250738585072012e-308", nullptr)); in TEST()
576 ASSERT_EQ(2.2250738585072014e-308, strtod("0.00022250738585072012e-304", nullptr)); in TEST()
577 ASSERT_EQ(2.2250738585072014e-308, strtod("00000002.2250738585072012e-308", nullptr)); in TEST()
578 ASSERT_EQ(2.2250738585072014e-308, strtod("2.225073858507201200000e-308", nullptr)); in TEST()
579 ASSERT_EQ(2.2250738585072014e-308, strtod("2.2250738585072012e-00308", nullptr)); in TEST()
580 ASSERT_EQ(2.2250738585072014e-308, strtod("2.22507385850720129978001e-308", nullptr)); in TEST()
581 ASSERT_EQ(-2.2250738585072014e-308, strtod("-2.2250738585072012e-308", nullptr)); in TEST()
/aosp12/frameworks/av/media/libmediaformatshaper/
H A DCodecProperties.cpp122 double bpp = strtod(p, &q); in setTuningValue()
145 double phaseout = strtod(p, &q); in setTuningValue()
153 double boost = strtod(p, &q); in setTuningValue()
225 bpp = strtod(p, &q); in bppPoint()
/aosp12/bionic/libc/bionic/
H A Datof.cpp34 return strtod(s, nullptr); in atof()
H A Dstrtold.cpp43 return strtod(s, end_ptr); in strtold()
H A Dstdlib_l.cpp33 return strtod(s, end_ptr); in strtod_l()
H A Dwcstod.cpp101 return wcstod<double>(s, end, strtod); in wcstod()
/aosp12/bionic/libc/include/
H A Dstdlib.h84 double strtod(const char* __s, char** __end_ptr);
85 long double strtold(const char* __s, char** __end_ptr) __RENAME_LDBL(strtod, 3, 21);
/aosp12/frameworks/native/opengl/tests/hwc/
H A DhwcStress.cpp254 perSetDelay = strtod(optarg, &chptr); in main()
265 endDelay = strtod(optarg, &chptr); in main()
274 duration = strtod(optarg, &chptr); in main()
H A DhwcColorEquiv.cpp185 endDelay = strtod(optarg, &chptr); in main()
H A DhwcRects.cpp216 endDelay = strtod(optarg, &chptr); in main()
/aosp12/bionic/libc/upstream-openbsd/lib/libc/gdtoa/
H A Dgdtoa.h113 extern double strtod ANSI((CONST char *, char **));
H A Dstrtod.c83 strtod in strtod() function
1102 DEF_STRONG(strtod);
/aosp12/bionic/tests/headers/posix/
H A Dstdlib_h.c129 FUNCTION(strtod, double (*f)(const char*, char**)); in stdlib_h()
/aosp12/system/extras/tests/binder/benchmarks/
H A DbinderAddInts.cpp275 options.iterDelay = strtod(optarg, &chptr); in main()
/aosp12/hardware/qcom/audio/legacy/libalsa-intf/
H A Dalsa_mixer.c633 val = (long)percent_to_index(strtod(s, NULL), pmin, pmax); in set_volume_simple()
636 val = (long)(strtod(s, NULL) * 100.0); in set_volume_simple()
/aosp12/system/extras/boottime_tools/bootio/
H A Dbootio_collector.cpp216 return static_cast<time_t>(strtod(uptime_str.c_str(), NULL)); in GetUptime()
/aosp12/bionic/libc/stdio/
H A Dvfscanf.cpp712 double res = strtod(buf, &p); in __svfscanf()
/aosp12/frameworks/base/native/android/
H A Dsystem_fonts.cpp205 float styleValue = strtod(reinterpret_cast<const char*>(styleValueStr.get()), nullptr); in copyFont()
/aosp12/frameworks/base/core/jni/
H A Dandroid_database_CursorWindow.cpp427 return sizeIncludingNull > 1 ? strtod(value, NULL) : 0.0; in nativeGetDouble()
/aosp12/art/cmdline/
H A Dcmdline_types.h210 double value = strtod(str.c_str(), &end);
H A DREADME.md194 double value = strtod(str.c_str(), &end);
/aosp12/bionic/libc/tools/
H A Dposix-2013.txt1021 strtod

12