HomeSort by relevance Sort by last modified time
    Searched refs:strtol (Results 26 - 50 of 594) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/ImageMagick/MagickCore/
string-private.h 65 return((int) strtol(value,(char **) NULL,10));
70 return(strtol(value,(char **) NULL,10));
  /external/linux-kselftest/tools/testing/selftests/powerpc/dscr/
dscr_sysfs_test.c 35 if (strtol(buf, NULL, 16) != val) {
37 val, strtol(buf, NULL, 16));
  /external/ltp/testcases/lib/
tst_random.c 70 max = strtol(argv[1], &end, 10);
79 min = strtol(argv[2], &end, 10);
  /external/webrtc/webrtc/tools/converter/
rgba_to_i420_converter.cc 68 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/
frame_analyzer.cc 81 int width = strtol((parser.GetFlag("width")).c_str(), NULL, 10);
82 int height = strtol((parser.GetFlag("height")).c_str(), NULL, 10);
  /external/autotest/client/tests/rmaptest/src/
rmap-test.c 159 niters = strtol(optarg, NULL, 10);
162 nvmas = strtol(optarg, NULL, 10);
165 vmasize = strtol(optarg, NULL, 10);
168 ntasks = strtol(optarg, NULL, 10);
171 vmas_to_do = strtol(optarg, NULL, 10);
  /external/tensorflow/tensorflow/lite/testing/nnapi_tflite_zip_tests/
split.h 54 fields.push_back(strtol(s.data() + p.first, nullptr, 10));
81 fields.push_back(strtol(s.data() + p.first, nullptr, 10));
91 static_cast<bool>(strtol(s.data() + p.first, nullptr, 10)));
  /external/tensorflow/tensorflow/lite/testing/
split.h 51 fields.push_back(strtol(s.data() + p.first, nullptr, 10));
78 fields.push_back(strtol(s.data() + p.first, nullptr, 10));
88 static_cast<bool>(strtol(s.data() + p.first, nullptr, 10)));
  /bionic/libc/bionic/
stdlib_l.cpp 41 return strtol(s, end_ptr, base);
  /external/android-clat/
clatd.h 57 *out = strtol(str, &end_ptr, 0);
  /external/autotest/client/site_tests/security_ptraceRestrictions/src/
sleeper.c 42 pid = strtol(argv[1], NULL, 10);
  /external/e2fsprogs/lib/e2p/
crypto_mode.c 67 num = strtol(string+9, &eptr, 10);
hashstr.c 65 num = strtol(string+8, &eptr, 10);
parse_num.c 79 log_block_size = strtol(argv[2], &p, 0);
  /external/elfutils/tests/
dwarf-ranges.c 35 ptrdiff_t cuoff = strtol (argv[2], NULL, 0);
  /external/google-breakpad/src/client/mac/handler/testcases/
breakpad_nlist_test.cc 73 uint64_t nmAddr = strtol(oneNMAddr, NULL, 16);
  /external/libaom/libaom/examples/
simple_encoder.c 181 max_frames = (int)strtol(argv[8], NULL, 0);
187 info.frame_width = (int)strtol(width_arg, NULL, 0);
188 info.frame_height = (int)strtol(height_arg, NULL, 0);
202 keyframe_interval = (int)strtol(keyframe_interval_arg, NULL, 0);
  /external/libcxx/include/support/android/
locale_bionic.h 61 return ::strtol(__nptr, __endptr, __base);
  /external/libtextclassifier/utils/strings/
numbers.cc 30 // Short version of man strtol:
32 // strtol parses some optional whitespaces, an optional +/- sign, and next a
37 // If there were no digits at all, strtol() sets temp to be c_str (the start
39 *value = strtol(c_str, &temp, 0); // NOLINT
  /external/libvpx/libvpx/examples/
simple_encoder.c 178 max_frames = (int)strtol(argv[8], NULL, 0);
184 info.frame_width = (int)strtol(width_arg, NULL, 0);
185 info.frame_height = (int)strtol(height_arg, NULL, 0);
199 keyframe_interval = (int)strtol(keyframe_interval_arg, NULL, 0);
  /external/ltp/testcases/kernel/controllers/cpuset/cpuset_memory_pressure_test/
cpuset_memory_pressure.c 43 if ((use = strtol(argv[1], NULL, 10)) < 0) {
  /external/ltp/testcases/kernel/fs/fs_di/
create_datafile.c 52 bufnum = strtol(argv[1], NULL, 0);
  /external/ltp/testcases/kernel/io/ltp-aiodio/
dio_sparse.c 111 alignment = strtol(optarg, &endp, 0);
115 writesize = strtol(optarg, &endp, 0);
119 filesize = strtol(optarg, &endp, 0);
123 offset = strtol(optarg, &endp, 0);
  /external/ltp/testcases/network/nfs/nfs_stress/
nfs04_create_file.c 52 bufnum = strtol(argv[1], NULL, 0);
  /external/perfetto/src/profiling/memory/
proc_utils.h 39 long int pid = strtol(entry->d_name, &end, 10);

Completed in 1948 milliseconds

12 3 4 5 6 7 8 91011>>