Searched refs:strtol (Results 1 - 25 of 471) sorted by relevance

1234567891011>>

/external/syslinux/com32/lib/
H A Dstrtol.c2 #define NAME strtol
/external/compiler-rt/test/asan/TestCases/
H A Dinterception_failure_test.cc13 extern "C" long strtol(const char *nptr, char **endptr, int base) { function
21 return (int)strtol(x, 0, 10);
H A Dcoverage-tracing.cc37 int n = strtol(argv[2], 0, 10);
H A Dstrtol_strict.c1 // 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(arra
[all...]
/external/compiler-rt/test/asan/TestCases/Linux/
H A Dinterception_test.cc11 extern "C" long strtol(const char *nptr, char **endptr, int base) { function
19 return (int)strtol(x, 0, 10);
H A Dinterception_malloc_test.cc20 return (int)strtol(x, 0, 10);
/external/webrtc/webrtc/tools/frame_editing/
H A Dframe_editing.cc85 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);
/external/tensorflow/tensorflow/stream_executor/lib/
H A Dnumbers.cc26 *value = strtol(str, &endptr, 10); // NOLINT
/external/ImageMagick/MagickCore/
H A Dstring-private.h65 return((int) strtol(value,(char **) NULL,10));
70 return(strtol(value,(char **) NULL,10));
/external/iw/
H A Droc.c26 freq = strtol(argv[0], &end, 0);
30 time = strtol(argv[1], &end, 0);
/external/libvpx/libvpx/vpx_ports/
H A Dppc_cpudetect.c25 *flags = (int)strtol(env, NULL, 0);
35 return env && *env ? (int)strtol(env, NULL, 0) : ~0;
/external/libusb/examples/
H A Dhotplugtest.c76 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/
H A Dlib521.c44 test_setopt(curl, CURLOPT_PORT, strtol(libtest_arg2, NULL, 10));
H A Dlib562.c60 test_setopt(curl, CURLOPT_PORT, strtol(libtest_arg2, NULL, 10));
/external/fio/lib/
H A Dstrntol.c27 ret = strtol(buf, end, base);
/external/linux-kselftest/tools/testing/selftests/intel_pstate/
H A Dmsr.c23 cpu = strtol(argv[1], (char **) NULL, 10);
/external/llvm/utils/count/
H A Dcount.c22 Count = strtol(argv[1], &End, 10);
/external/rmi4utils/rmihidtool/
H A Dmain.cpp129 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/
H A Dcount.c22 Count = strtol(argv[1], &End, 10);
/external/toybox/toys/posix/
H A Drenice.c36 id = strtol(s, &s, 10);
/external/wayland/tests/
H A Dexec-fd-leak-checker.c40 v = strtol(str, &end, 10);
/external/linux-kselftest/tools/testing/selftests/powerpc/dscr/
H A Ddscr_sysfs_test.c35 if (strtol(buf, NULL, 16) != val) {
37 val, strtol(buf, NULL, 16));
/external/ltp/testcases/lib/
H A Dtst_random.c70 max = strtol(argv[1], &end, 10);
79 min = strtol(argv[2], &end, 10);
/external/webrtc/webrtc/tools/converter/
H A Drgba_to_i420_converter.cc68 int width = strtol((parser.GetFlag("width")).c_str(), NULL, 10);
69 int height = strtol((parser.GetFlag("height")).c_str(), NULL, 10);
/external/webrtc/webrtc/tools/frame_analyzer/
H A Dframe_analyzer.cc81 int width = strtol((parser.GetFlag("width")).c_str(), NULL, 10);
82 int height = strtol((parser.GetFlag("height")).c_str(), NULL, 10);

Completed in 1316 milliseconds

1234567891011>>