/aosp12/system/teeui/test/ |
H A D | teeui_device_config.cpp | 115 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 D | legacy_stdlib_inlines.h | 60 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 D | parsedouble.h | 54 return ParseFloatingPoint<double, strtod>(s, out, min, max); 59 return ParseFloatingPoint<double, strtod>(s.c_str(), out, min, max);
|
/aosp12/bionic/tests/ |
H A D | stdlib_test.cpp | 555 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 D | CodecProperties.cpp | 122 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 D | atof.cpp | 34 return strtod(s, nullptr); in atof()
|
H A D | strtold.cpp | 43 return strtod(s, end_ptr); in strtold()
|
H A D | stdlib_l.cpp | 33 return strtod(s, end_ptr); in strtod_l()
|
H A D | wcstod.cpp | 101 return wcstod<double>(s, end, strtod); in wcstod()
|
/aosp12/bionic/libc/include/ |
H A D | stdlib.h | 84 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 D | hwcStress.cpp | 254 perSetDelay = strtod(optarg, &chptr); in main() 265 endDelay = strtod(optarg, &chptr); in main() 274 duration = strtod(optarg, &chptr); in main()
|
H A D | hwcColorEquiv.cpp | 185 endDelay = strtod(optarg, &chptr); in main()
|
H A D | hwcRects.cpp | 216 endDelay = strtod(optarg, &chptr); in main()
|
/aosp12/bionic/libc/upstream-openbsd/lib/libc/gdtoa/ |
H A D | gdtoa.h | 113 extern double strtod ANSI((CONST char *, char **));
|
H A D | strtod.c | 83 strtod in strtod() function 1102 DEF_STRONG(strtod);
|
/aosp12/bionic/tests/headers/posix/ |
H A D | stdlib_h.c | 129 FUNCTION(strtod, double (*f)(const char*, char**)); in stdlib_h()
|
/aosp12/system/extras/tests/binder/benchmarks/ |
H A D | binderAddInts.cpp | 275 options.iterDelay = strtod(optarg, &chptr); in main()
|
/aosp12/hardware/qcom/audio/legacy/libalsa-intf/ |
H A D | alsa_mixer.c | 633 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 D | bootio_collector.cpp | 216 return static_cast<time_t>(strtod(uptime_str.c_str(), NULL)); in GetUptime()
|
/aosp12/bionic/libc/stdio/ |
H A D | vfscanf.cpp | 712 double res = strtod(buf, &p); in __svfscanf()
|
/aosp12/frameworks/base/native/android/ |
H A D | system_fonts.cpp | 205 float styleValue = strtod(reinterpret_cast<const char*>(styleValueStr.get()), nullptr); in copyFont()
|
/aosp12/frameworks/base/core/jni/ |
H A D | android_database_CursorWindow.cpp | 427 return sizeIncludingNull > 1 ? strtod(value, NULL) : 0.0; in nativeGetDouble()
|
/aosp12/art/cmdline/ |
H A D | cmdline_types.h | 210 double value = strtod(str.c_str(), &end);
|
H A D | README.md | 194 double value = strtod(str.c_str(), &end);
|
/aosp12/bionic/libc/tools/ |
H A D | posix-2013.txt | 1021 strtod
|