Searched refs:strtol (Results 1 - 25 of 232) sorted by path

12345678910

/external/aac/libSYS/include/
H A Dcmdl_parser.h165 #define _tcstol strtol
/external/android-clat/
H A Dconfig.c72 conf_int = strtol(tmp,&endptr,10);
/external/bison/examples/calc++/
H A Dcalc++-scanner.cc953 long n = strtol (yytext, NULL, 10);
/external/bison/lib/
H A Dgnulib.mk2226 EXTRA_DIST += strtol.c strtoul.c
2228 EXTRA_libbison_a_SOURCES += strtol.c strtoul.c
H A Dstrtol.c57 # define strtol __wcstoull_l macro
59 # define strtol __wcstoul_l macro
63 # define strtol __strtoull_l macro
65 # define strtol __strtoul_l macro
71 # define strtol __wcstoll_l macro
73 # define strtol __wcstol_l macro
77 # define strtol __strtoll_l macro
79 # define strtol __strtol_l macro
87 # define strtol wcstoull macro
89 # define strtol wcstou macro
93 # define strtol macro
95 # define strtol macro
101 # define strtol macro
103 # define strtol macro
107 # define strtol macro
238 INTERNAL (strtol) (const STRING_TYPE *nptr, STRING_TYPE **endptr, function
429 strtol (const STRING_TYPE *nptr, STRING_TYPE **endptr, function
[all...]
/external/bison/src/
H A Dscan-code.c2705 long int num = strtol (cp, &cp, 10);
H A Dscan-code.l516 long int num = strtol (cp, &cp, 10);
/external/bluetooth/bluedroid/btif/src/
H A Dbtif_config_util.cpp556 int v = strtol(line, NULL, 16);
/external/bluetooth/bluedroid/test/bluedroidtest/
H A Dbluedroidtest.c341 *d++ = strtol(str, &endp, 16);
/external/ceres-solver/internal/ceres/
H A Dgmock_gtest_all.cc8470 const long long_value = strtol(str, &end, 10); // NOLINT
8472 // Has strtol() consumed all characters in the string?
8487 // The parsed value overflows as a long. (strtol() returns
/external/checkpolicy/
H A Dcheckpolicy.c455 long int n = strtol(optarg, NULL, 10);
/external/chromium/base/
H A Dprocess_util_posix.cc355 const long int fd = strtol(fd_dir.name(), &endptr, 10);
/external/chromium/chrome/browser/autofill/
H A Dautofill_xml_parser.cc98 int value = strtol(attribute, &attr_end, 10);
/external/chromium/net/base/
H A Dtransport_security_state.cc148 // int. We use strtol in order to handle overflow correctly. The string may
156 long int i = strtol(s.data(), &endptr, 10 /* base */);
/external/chromium/net/disk_cache/
H A Dstress_cache.cc235 long int iteration = strtol(argv[1], &end, 0);
/external/chromium/net/tools/crash_cache/
H A Dcrash_cache.cc355 RankCrashes action = static_cast<RankCrashes>(strtol(argv[1], &end, 0));
/external/chromium/sdch/open-vcdiff/src/
H A Dgflags.cc129 // Neither strtoll nor strtoq are defined. I hope strtol works!
130 # define strtoint64 strtol
/external/chromium/sdch/open-vcdiff/src/gtest/
H A Dgtest-death-test.cc708 // this bypasses strtol's "optional leading whitespace and plus
714 const long parsed = strtol(str.c_str(), &endptr, 10); // NOLINT
H A Dgtest-port.cc225 const long long_value = strtol(str, &end, 10); // NOLINT
227 // Has strtol() consumed all characters in the string?
242 // The parsed value overflows as a long. (strtol() returns
/external/chromium/testing/gtest/src/
H A Dgtest-port.cc668 const long long_value = strtol(str, &end, 10); // NOLINT
670 // Has strtol() consumed all characters in the string?
685 // The parsed value overflows as a long. (strtol() returns
/external/chromium/third_party/libevent/
H A Devdns.c2631 const int r = strtol(str, &endptr, 10);
H A Devutil.c185 return (ev_int64_t)strtol(s, endptr, base);
H A Dhttp.c2084 c = (char)strtol(tmp, NULL, 16);
/external/chromium/third_party/libjingle/source/talk/base/
H A Dflags.cc237 *flag->int_variable() = strtol(value, &endp, 10);
H A Dproxydetect.cc336 port = static_cast<uint16>(strtol(colon + 1, &endptr, 0));

Completed in 669 milliseconds

12345678910