HomeSort by relevance Sort by last modified time
    Searched refs:strtod (Results 76 - 100 of 288) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/perfetto/src/ftrace_reader/
cpu_stats_parser.cc 39 return strtod(s + 1, nullptr);
  /external/python/cpython2/Python/
strtod.c 6 /* comp.sources.misc strtod(), as posted in comp.lang.tcl,
17 Defines: double strtod (char *str, char**ptr)
20 /* This is an implementation of the strtod() function described in the
27 (a) some UNIX systems do not yet have strtod(), or do not have it
32 of strtod(), and if we give this one away maybe someone will look for
65 double strtod(char *str, char **ptr) function
  /external/tensorflow/tensorflow/contrib/lite/testing/
split.h 69 fields.push_back(strtod(s.data() + p.first, nullptr));
  /bionic/libc/upstream-openbsd/lib/libc/gdtoa/
gdtoa.h 113 extern double strtod ANSI((CONST char *, char **));
  /device/linaro/bootloader/edk2/StdLib/Include/
stdlib.h 96 double strtod (const char * __restrict nptr,
520 The strtod, strtof, and strtold functions convert the initial portion of
543 double strtod(const char * __restrict nptr, char ** __restrict endptr);
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/gdtoa/
gdtoa.h 134 extern double strtod ANSI((CONST char *, char **));
  /external/linux-kselftest/tools/testing/selftests/powerpc/benchmarks/
null_syscall.c 100 d = strtod(p + 1, &end);
  /prebuilts/ndk/r16/sources/android/support/src/
wcstox.cpp 98 return strtod(s, p);
  /bionic/tests/
stdlib_test.cpp 473 TEST(stdlib, strtod) {
474 CheckStrToFloat(strtod);
493 ASSERT_EQ(2.2250738585072014e-308, strtod("2.2250738585072012e-308", NULL));
494 ASSERT_EQ(2.2250738585072014e-308, strtod("0.00022250738585072012e-304", NULL));
495 ASSERT_EQ(2.2250738585072014e-308, strtod("00000002.2250738585072012e-308", NULL));
496 ASSERT_EQ(2.2250738585072014e-308, strtod("2.225073858507201200000e-308", NULL));
497 ASSERT_EQ(2.2250738585072014e-308, strtod("2.2250738585072012e-00308", NULL));
498 ASSERT_EQ(2.2250738585072014e-308, strtod("2.22507385850720129978001e-308", NULL));
499 ASSERT_EQ(-2.2250738585072014e-308, strtod("-2.2250738585072012e-308", NULL));
  /bionic/libc/include/
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);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_strtod.py 28 def strtod(s, mant_dig=53, min_exp = -1021, max_exp = 1024): function
102 expected = strtod(s)
  /device/linaro/bootloader/edk2/StdLib/Include/Lua/
luaconf.h 49 #define LUA_USE_STRTODHEX /* assume 'strtod' handles hex formats */
58 #define LUA_USE_STRTODHEX /* assume 'strtod' handles hex formats */
416 ** In C99, 'strtod' does both conversions. C89, however, has no function
421 #define lua_str2number(s,p) strtod((s), (p))
424 #define lua_strx2number(s,p) strtod((s), (p))
  /external/tensorflow/tensorflow/contrib/lite/examples/label_image/
label_image.cc 264 s.input_mean = strtod(optarg, NULL);
280 s.input_std = strtod(optarg, NULL);
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_strtod.py 28 def strtod(s, mant_dig=53, min_exp = -1021, max_exp = 1024): function
102 expected = strtod(s)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_strtod.py 28 def strtod(s, mant_dig=53, min_exp = -1021, max_exp = 1024): function
102 expected = strtod(s)
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/src/
sysinfo.cc 184 cpuinfo_cycles_per_second = strtod(freqstr + 1, &err) * 1000000.0;
191 bogo_clock = strtod(freqstr + 1, &err) * 1000000.0;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_strtod.py 28 def strtod(s, mant_dig=53, min_exp = -1021, max_exp = 1024): function
102 expected = strtod(s)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_strtod.py 28 def strtod(s, mant_dig=53, min_exp = -1021, max_exp = 1024): function
102 expected = strtod(s)
  /frameworks/native/opengl/tests/hwc/
hwcStress.cpp 254 perSetDelay = strtod(optarg, &chptr);
265 endDelay = strtod(optarg, &chptr);
274 duration = strtod(optarg, &chptr);
  /art/libartbase/base/
utils.cc 196 value = strtod(substring.c_str(), &end);
  /bionic/tests/headers/posix/
stdlib_h.c 129 FUNCTION(strtod, double (*f)(const char*, char**));
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/stdlib/
stdlib.h 97 double strtod(const char *__restrict, char **__restrict);
  /external/google-benchmark/src/
commandlineflags.cc 64 const double double_value = strtod(str, &end); // NOLINT
  /external/icu/icu4c/source/common/
cstring.h 91 #define uprv_strtod(source, end) U_STANDARD_CPP_NAMESPACE strtod(source, end)
  /external/iproute2/tc/
q_sfb.c 44 d = strtod(arg, &ptr);

Completed in 502 milliseconds

1 2 34 5 6 7 8 91011>>