/external/compiler-rt/test/asan/TestCases/ |
interception_failure_test.cc | 13 extern "C" long strtol(const char *nptr, char **endptr, int base) { function 21 return (int)strtol(x, 0, 10);
|
coverage-tracing.cc | 37 int n = strtol(argv[2], 0, 10);
|
strtol_strict.c | 1 // Test strict_string_checks option in strtol function 33 long r = strtol(array, &endptr, 3); 41 long r = strtol(array, &endptr, 35); 48 // Using -1 for a strtol base causes MSVC to abort. Print the expected lines 59 long r = strtol(array + 1, NULL, -1); 66 // Using -1 for a strtol base causes MSVC to abort. Print the expected lines 75 long r = strtol(array + 3, NULL, 1); 84 long r = strtol(array, NULL, 0); 92 long r = strtol(array, &endptr, 0); 100 long r = strtol(array + 2, NULL, 0) [all...] |
/external/compiler-rt/test/asan/TestCases/Linux/ |
interception_test.cc | 11 extern "C" long strtol(const char *nptr, char **endptr, int base) { function 19 return (int)strtol(x, 0, 10);
|
interception_malloc_test.cc | 20 return (int)strtol(x, 0, 10);
|
/external/webrtc/webrtc/tools/frame_editing/ |
frame_editing.cc | 85 int width = strtol((parser.GetFlag("width")).c_str(), NULL, 10); 86 int height = strtol((parser.GetFlag("height")).c_str(), NULL, 10); 87 int first_frame_to_cut = strtol((parser.GetFlag("f")).c_str(), NULL, 10); 88 int interval = strtol((parser.GetFlag("interval")).c_str(), NULL, 10); 89 int last_frame_to_cut = strtol((parser.GetFlag("l")).c_str(), NULL, 10);
|
/bionic/libc/private/ |
get_cpu_count_from_string.h | 38 int cpu = static_cast<int>(strtol(s, const_cast<char**>(&s), 10));
|
/external/tensorflow/tensorflow/stream_executor/lib/ |
numbers.cc | 25 *value = strtol(str, &endptr, 10); // NOLINT
|
/external/iw/ |
roc.c | 26 freq = strtol(argv[0], &end, 0); 30 time = strtol(argv[1], &end, 0);
|
/external/libaom/libaom/aom_ports/ |
ppc_cpudetect.c | 27 *flags = (int)strtol(env, NULL, 0); 37 return env && *env ? (int)strtol(env, NULL, 0) : ~0;
|
/external/libvpx/libvpx/vpx_ports/ |
ppc_cpudetect.c | 25 *flags = (int)strtol(env, NULL, 0); 35 return env && *env ? (int)strtol(env, NULL, 0) : ~0;
|
/device/google/marlin/dataservices/datatop/src/ |
datatop_opt.c | 93 clopts->priority = strtol(optarg, 0, 10); 102 clopts->poll_per = strtol(optarg, 0, 10); 111 clopts->poll_time = strtol(optarg, 0, 10);
|
/external/perfetto/src/trace_processor/ |
query_constraints.cc | 112 long num_constraints = strtol(splitter.cur_token() + 1, nullptr, 10); 115 int col = static_cast<int>(strtol(splitter.cur_token(), nullptr, 10)); 118 static_cast<unsigned char>(strtol(splitter.cur_token(), nullptr, 10)); 124 long num_order_by = strtol(splitter.cur_token() + 1, nullptr, 10); 127 int col = static_cast<int>(strtol(splitter.cur_token(), nullptr, 10)); 130 static_cast<unsigned char>(strtol(splitter.cur_token(), nullptr, 10));
|
/external/libusb/examples/ |
hotplugtest.c | 76 vendor_id = (argc > 1) ? (int)strtol (argv[1], NULL, 0) : 0x045a; 77 product_id = (argc > 2) ? (int)strtol (argv[2], NULL, 0) : 0x5005; 78 class_id = (argc > 3) ? (int)strtol (argv[3], NULL, 0) : LIBUSB_HOTPLUG_MATCH_ANY;
|
/external/curl/tests/libtest/ |
lib521.c | 44 test_setopt(curl, CURLOPT_PORT, strtol(libtest_arg2, NULL, 10));
|
lib562.c | 60 test_setopt(curl, CURLOPT_PORT, strtol(libtest_arg2, NULL, 10));
|
/external/harfbuzz_ng/src/ |
test-would-substitute.cc | 63 return !hb_ot_layout_lookup_would_substitute (face, strtol (argv[2], nullptr, 0), glyphs, len, false);
|
/external/libtextclassifier/lang_id/common/lite_strings/ |
numbers.cc | 46 // Short version of man strtol: 48 // strtol parses some optional whitespaces, an optional +/- sign, and next a 53 // If there were no digits at all, strtol() sets temp to be c_str (the start 56 const long int parsed_value = strtol(c_str, &temp, 0); // NOLINT 59 // LONG_MAX means that strtol encountered an overflow (normally, in that case, 79 // strtof is similar to strtol, see more detailed comments inside LiteAtoi.
|
/external/linux-kselftest/tools/testing/selftests/intel_pstate/ |
msr.c | 23 cpu = strtol(argv[1], (char **) NULL, 10);
|
/external/llvm/utils/count/ |
count.c | 22 Count = strtol(argv[1], &End, 10);
|
/external/rmi4utils/rmihidtool/ |
main.cpp | 129 int mode = strtol(token, NULL, 0); 142 unsigned int addr = strtol(token, NULL, 0); 145 unsigned int len = strtol(token, NULL, 0); 158 unsigned int addr = strtol(token, NULL, 0); 164 report[index++] = strtol(token, NULL, 0); 249 addr = strtol(optarg, NULL, 0); 250 len = strtol(argv[optind++], NULL, 0); 254 addr = strtol(optarg, NULL, 0); 322 report[i++] = (unsigned char)strtol(token, NULL, 0);
|
/external/swiftshader/third_party/LLVM/utils/count/ |
count.c | 22 Count = strtol(argv[1], &End, 10);
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/count/ |
count.c | 22 Count = strtol(argv[1], &End, 10);
|
/external/toybox/toys/posix/ |
renice.c | 36 id = strtol(s, &s, 10);
|
/external/wayland/tests/ |
exec-fd-leak-checker.c | 40 v = strtol(str, &end, 10);
|