/external/blktrace/iowatcher/ |
D | mpstat.c | 270 val = strtod(cur, &nptr); in read_mpstat_event() 277 val = strtod(cur, &nptr); in read_mpstat_event() 283 val = strtod(cur, &nptr); in read_mpstat_event() 289 val = strtod(cur, &nptr); in read_mpstat_event() 295 val = strtod(cur, &nptr); in read_mpstat_event() 301 val = strtod(cur, &nptr); in read_mpstat_event()
|
/external/libcxx/include/support/solaris/ |
D | floatingpoint.h | 11 #define strtod sun_strtod macro 14 #undef strtod
|
D | xlocale.h | 64 return strtod(__nptr, __endptr); in strtod_l()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/ |
D | FileUtilities.cpp | 107 V1 = strtod(F1P, const_cast<char**>(&F1NumEnd)); in CompareNumbers() 108 V2 = strtod(F2P, const_cast<char**>(&F2NumEnd)); in CompareNumbers() 116 V1 = strtod(&StrTmp[0], const_cast<char**>(&F1NumEnd)); in CompareNumbers() 126 V2 = strtod(&StrTmp[0], const_cast<char**>(&F2NumEnd)); in CompareNumbers()
|
/external/llvm/lib/Support/ |
D | FileUtilities.cpp | 103 V1 = strtod(F1P, const_cast<char**>(&F1NumEnd)); in CompareNumbers() 104 V2 = strtod(F2P, const_cast<char**>(&F2NumEnd)); in CompareNumbers() 112 V1 = strtod(&StrTmp[0], const_cast<char**>(&F1NumEnd)); in CompareNumbers() 122 V2 = strtod(&StrTmp[0], const_cast<char**>(&F2NumEnd)); in CompareNumbers()
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
D | FileUtilities.cpp | 104 V1 = strtod(F1P, const_cast<char**>(&F1NumEnd)); in CompareNumbers() 105 V2 = strtod(F2P, const_cast<char**>(&F2NumEnd)); in CompareNumbers() 113 V1 = strtod(&StrTmp[0], const_cast<char**>(&F1NumEnd)); in CompareNumbers() 123 V2 = strtod(&StrTmp[0], const_cast<char**>(&F2NumEnd)); in CompareNumbers()
|
/external/mesa3d/src/util/ |
D | strtod.c | 66 return strtod(s, end); in _mesa_strtod() 83 return (float) strtod(s, end); in _mesa_strtof()
|
D | Makefile.sources | 47 strtod.c \ 48 strtod.h \
|
D | meson.build | 71 'strtod.c', 72 'strtod.h',
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/InstCombine/ |
D | strto-1.ll | 10 declare double @strtod(i8* %s, i8** %endptr, i32 %base) 11 ; CHECK: declare double @strtod(i8* readonly, i8** nocapture, i32) 37 call double @strtod(i8* %x, i8** null, i32 10) 38 ; CHECK-NEXT: call double @strtod(i8* nocapture %x, i8** null, i32 10)
|
/external/llvm/test/Transforms/InstCombine/ |
D | strto-1.ll | 10 declare double @strtod(i8* %s, i8** %endptr, i32 %base) 11 ; CHECK: declare double @strtod(i8* readonly, i8** nocapture, i32) 37 call double @strtod(i8* %x, i8** null, i32 10) 38 ; CHECK-NEXT: call double @strtod(i8* nocapture %x, i8** null, i32 10)
|
/external/protobuf/src/google/protobuf/io/ |
D | strtod.cc | 86 double result = strtod(text, &temp_endptr); in NoLocaleStrtod() 96 result = strtod(localized_cstr, &localized_endptr); in NoLocaleStrtod()
|
/external/clang/test/CodeGen/ |
D | libcalls-fno-builtin.c | 30 double strtod(const char *nptr, char **endptr); 106 double t18(char **x) { return strtod("123.4", x); } in t18()
|
/external/iw/ |
D | ibss.c | 139 rate = strtod(value, &end); in join_ibss() 162 rate = strtod(argv[0], &end); in join_ibss()
|
/external/libcxx/include/support/android/ |
D | locale_bionic.h | 56 return ::strtod(__nptr, __endptr); in strtod_l()
|
/external/iproute2/tc/ |
D | tc_util.c | 198 double bps = strtod(str, &p); in get_rate() 226 double bps = strtod(str, &p); in get_rate64() 280 t = strtod(str, &p); in get_time() 331 sz = strtod(str, &p); in get_size()
|
/external/libtextclassifier/utils/strings/ |
D | numbers.cc | 57 *value = strtod(c_str, &temp); in ParseDouble()
|
/external/lua/src/ |
D | luaconf.h | 499 #define lua_str2number(s,p) strtod((s), (p)) 652 #define lua_str2number(s,p) ((lua_Number)strtod((s), (p)))
|
/external/libcxx/include/support/xlocale/ |
D | __strtonum_fallback.h | 30 return ::strtod(nptr, endptr); in strtod_l()
|
/external/python/cpython2/Lib/test/ |
D | test_strtod.py | 28 def strtod(s, mant_dig=53, min_exp = -1021, max_exp = 1024): function 102 expected = strtod(s)
|
/external/python/cpython3/Lib/test/ |
D | test_strtod.py | 27 def strtod(s, mant_dig=53, min_exp = -1021, max_exp = 1024): function 101 expected = strtod(s)
|
/external/libcxx/include/ |
D | cstdlib | 39 double strtod (const char* restrict nptr, char** restrict endptr); 112 using ::strtod;
|
/external/perf_data_converter/src/quipper/ |
D | perf_stat_parser.cc | 71 double seconds = strtod(str.c_str(), &endptr); in SecondsStringToMillisecondsUint64()
|
/external/tensorflow/tensorflow/lite/examples/label_image/ |
D | label_image.cc | 306 s.input_mean = strtod(optarg, nullptr); in Main() 334 s.input_std = strtod(optarg, nullptr); in Main()
|
/external/perfetto/src/traced/probes/ftrace/ |
D | cpu_stats_parser.cc | 40 return strtod(s + 1, nullptr); in ExtractDouble()
|