/external/strace/tests/ |
overflowuid.c | 55 lval = strtol(buf, &endptr, 10);
|
/external/strace/tests-m32/ |
overflowuid.c | 55 lval = strtol(buf, &endptr, 10);
|
/external/strace/tests-mx32/ |
overflowuid.c | 55 lval = strtol(buf, &endptr, 10);
|
/external/autotest/client/tests/monotonic_time/src/ |
cpuset.c | 41 start = end = (int)strtol(s, &next, 0); 48 end = (int)strtol(s, &next, 0);
|
/external/libaom/libaom/aom_ports/ |
arm_cpudetect.c | 28 *flags = (int)strtol(env, NULL, 0); 38 return env && *env ? (int)strtol(env, NULL, 0) : ~0;
|
/external/libaom/libaom/examples/ |
decode_with_drops.c | 94 n = (int)strtol(argv[3], &nptr, 0); 95 m = (int)strtol(nptr + 1, NULL, 0);
|
/external/libvpx/libvpx/examples/ |
decode_with_drops.c | 95 n = (int)strtol(argv[3], &nptr, 0); 96 m = (int)strtol(nptr + 1, NULL, 0);
|
/external/libvpx/libvpx/vpx_ports/ |
arm_cpudetect.c | 28 *flags = (int)strtol(env, NULL, 0); 38 return env && *env ? (int)strtol(env, NULL, 0) : ~0;
|
/external/u-boot/tools/ |
atmelimage.c | 73 pmecc.use_pmecc = strtol(param, NULL, 10); 76 pmecc.sector_per_page = strtol(param, NULL, 10); 79 pmecc.spare_size = strtol(param, NULL, 10); 82 pmecc.ecc_bits = strtol(param, NULL, 10); 85 pmecc.sector_size = strtol(param, NULL, 10); 88 pmecc.ecc_offset = strtol(param, NULL, 10);
|
/external/webrtc/webrtc/modules/video_coding/codecs/vp8/ |
vp8_sequence_coder.cc | 89 int width = strtol((parser->GetFlag("w")).c_str(), NULL, 10); 90 int height = strtol((parser->GetFlag("h")).c_str(), NULL, 10); 91 int framerate = strtol((parser->GetFlag("f")).c_str(), NULL, 10); 97 int target_bitrate = strtol((parser->GetFlag("b")).c_str(), NULL, 10); 126 int start_frame = strtol((parser->GetFlag("start_frame")).c_str(), NULL, 10); 127 int num_frames = strtol((parser->GetFlag("num_frames")).c_str(), NULL, 10);
|
/external/tensorflow/tensorflow/lite/examples/label_image/ |
label_image.cc | 303 s.accel = strtol(optarg, nullptr, 10); // NOLINT(runtime/deprecated_fn) 310 strtol(optarg, nullptr, 10); // NOLINT(runtime/deprecated_fn) 314 strtol(optarg, nullptr, 10); // NOLINT(runtime/deprecated_fn) 327 strtol(optarg, nullptr, 10); // NOLINT(runtime/deprecated_fn) 331 strtol(optarg, nullptr, 10); // NOLINT(runtime/deprecated_fn) 337 s.number_of_threads = strtol( // NOLINT(runtime/deprecated_fn) 342 strtol(optarg, nullptr, 10); // NOLINT(runtime/deprecated_fn)
|
/device/google/contexthub/util/stm32_flash/ |
flash.c | 119 sector = strtol(optarg, NULL, 0); 128 length = strtol(optarg, NULL, 0); 131 address = strtol(optarg, NULL, 0); 137 type = strtol(optarg, NULL, 0); 149 gpio_nreset = strtol(optarg, NULL, 0);
|
/external/dtc/ |
dtc.c | 200 outversion = strtol(optarg, NULL, 0); 206 reservenum = strtol(optarg, NULL, 0); 209 minsize = strtol(optarg, NULL, 0); 212 padsize = strtol(optarg, NULL, 0); 215 alignsize = strtol(optarg, NULL, 0);
|
/external/u-boot/scripts/dtc/ |
dtc.c | 198 outversion = strtol(optarg, NULL, 0); 204 reservenum = strtol(optarg, NULL, 0); 207 minsize = strtol(optarg, NULL, 0); 210 padsize = strtol(optarg, NULL, 0); 213 alignsize = strtol(optarg, NULL, 0);
|
/bionic/libc/bionic/ |
strtol.cpp | 166 return strtol(s, nullptr, 10); 170 return strtol(s, nullptr, 10); 181 long strtol(const char* s, char** end, int base) { function
|
/device/google/cuttlefish_common/guest/hals/camera/ |
CameraConfiguration.cpp | 119 temp = strtol(value.c_str(), &endptr, 10); 153 resolution->width = strtol(width.c_str(), &endptr, 10); 160 resolution->height = strtol(height.c_str(), &endptr, 10);
|
/external/mesa3d/src/gallium/drivers/freedreno/ir3/ |
ir3_cmdline.c | 269 key.vsaturate_s = key.fsaturate_s = strtol(argv[n+1], NULL, 0); 276 key.vsaturate_t = key.fsaturate_t = strtol(argv[n+1], NULL, 0); 283 key.vsaturate_r = key.fsaturate_r = strtol(argv[n+1], NULL, 0); 290 key.vastc_srgb = key.fastc_srgb = strtol(argv[n+1], NULL, 0); 315 key.ucp_enables = strtol(argv[n+1], NULL, 0); 322 gpu_id = strtol(argv[n+1], NULL, 0);
|
/external/bcc/src/cc/ |
bcc_perf_map.c | 53 nstgid = (int)strtol(strrchr(line, '\t'), NULL, 10); 56 nstgid = (int)strtol(strrchr(line, '\t'), NULL, 10);
|
/external/clang/test/CodeGen/ |
libcalls-fno-builtin.c | 7 // RUN: -fno-builtin-strtold -fno-builtin-strtol -fno-builtin-strtoll -fno-builtin-strtoul \ 33 long int strtol(const char *nptr, char **endptr, int base); 118 long int t21(char **x) { return strtol("1234", x, 10); } 120 // CHECK: strtol
|
/external/kmod/testsuite/ |
delete_module.c | 74 l = strtol(p, &end, 0); 81 l = strtol(p, &end, 0);
|
/external/libdrm/amdgpu/ |
amdgpu_asic_id.c | 61 did = strtol(s_did, &endptr, 16); 75 rid = strtol(s_rid, &endptr, 16);
|
/external/libevent/test/ |
bench_http.c | 121 port = (int)strtol(argv[i+1], &endptr, 10); 132 content_len = (size_t)strtol(argv[i+1], &endptr, 10);
|
/external/ltp/lib/ |
self_exec.c | 107 i = strtol(tok, &endptr, 10); 117 i = strtol(tok, &endptr, 10);
|
/external/toybox/toys/posix/ |
kill.c | 80 int i = strtol(TT.s, &arg, 10); 143 pid = strtol(arg, &tmp, 10);
|
/external/webrtc/webrtc/tools/psnr_ssim_analyzer/ |
psnr_ssim_analyzer.cc | 122 int width = strtol((parser.GetFlag("width")).c_str(), NULL, 10); 123 int height = strtol((parser.GetFlag("height")).c_str(), NULL, 10);
|