/bionic/libc/include/android/ |
legacy_stdlib_inlines.h | 104 return strtol(__s, __end_ptr, __base);
|
/device/generic/goldfish/ril/ |
at_tok.c | 94 * "base" is the same as the base param in strtol 116 l = strtol(ret, &end, base);
|
/external/autotest/client/site_tests/platform_CompressedSwap/src/ |
hog.c | 23 n = strtol(s, &end, 10);
|
/external/freetype/include/freetype/config/ |
ftstdlib.h | 145 #define ft_strtol strtol
|
/external/ipsec-tools/src/racoon/ |
str2val.c | 116 *rp++ = (char)strtol(b, NULL, base);
|
/external/libcxx/include/support/solaris/ |
xlocale.h | 44 return strtol(__nptr, __endptr, __base);
|
/external/libvpx/libvpx/ |
args.c | 142 rawval = (int32_t)strtol(arg->val, &endptr, 10); 165 rawval = strtol(arg->val, &endptr, 10); 177 rawval = strtol(endptr + 1, &endptr, 10); 197 rawval = strtol(arg->val, &endptr, 10);
|
/external/llvm/tools/llvm-c-test/ |
disassemble.c | 77 disbuf[disbuflen++] = strtol(tokens[i], NULL, 16);
|
/external/ltp/testcases/kernel/fs/lftest/ |
lftest.c | 57 bufnum = strtol(argv[1], NULL, 0);
|
/external/ltp/testcases/lib/ |
tst_sleep.c | 66 interval = strtol(argv[optind], &end, 10);
|
/external/mesa3d/src/compiler/glsl/ |
main.cpp | 83 options.glsl_version = strtol(optarg, NULL, 10);
|
/external/mesa3d/src/gallium/drivers/ddebug/ |
dd_util.h | 99 num = strtol(s, NULL, 10);
|
/external/openssh/openbsd-compat/ |
bsd-closefrom.c | 82 fd = strtol(dent->d_name, &endp, 10);
|
/external/strace/tests/ |
nsyscalls.c | 112 int debug_out_fd = strtol(argv[2], NULL, 0);
|
/external/strace/tests-m32/ |
nsyscalls.c | 112 int debug_out_fd = strtol(argv[2], NULL, 0);
|
/external/strace/tests-mx32/ |
nsyscalls.c | 112 int debug_out_fd = strtol(argv[2], NULL, 0);
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-c-test/ |
disassemble.c | 77 disbuf[disbuflen++] = strtol(tokens[i], NULL, 16);
|
/external/tinycompress/ |
cplay.c | 170 buffer_size = strtol(optarg, NULL, 0); 173 frag = strtol(optarg, NULL, 10); 176 card = strtol(optarg, NULL, 10); 179 device = strtol(optarg, NULL, 10);
|
/external/u-boot/tools/ |
gen_ethaddr_crc.c | 21 return (strtol(nibble, NULL, 16) << (lo ? 0 : 4)) & (lo ? 0x0f : 0xf0); 30 char nibble[2] = { 0x00, '\n' }; /* for strtol */
|
sunxi-spl-image-builder.c | 435 info.ecc_strength = strtol(optarg, &endptr, 0); 437 info.ecc_step_size = strtol(endptr + 1, NULL, 0); 440 info.page_size = strtol(optarg, NULL, 0); 443 info.oob_size = strtol(optarg, NULL, 0); 446 info.usable_page_size = strtol(optarg, NULL, 0); 449 info.eraseblock_size = strtol(optarg, NULL, 0);
|
/external/vboot_reference/cgpt/ |
cmd_prioritize.c | 73 params.max_priority = (int)strtol(optarg, &e, 0);
|
/external/libaom/libaom/common/ |
args.c | 199 const long rawval = strtol(arg->val, &endptr, 10); // NOLINT 222 rawval = strtol(arg->val, &endptr, 10); 234 rawval = strtol(endptr + 1, &endptr, 10); 254 rawval = strtol(arg->val, &endptr, 10); 282 int32_t rawval = (int32_t)strtol(ptr, &endptr, 10);
|
/build/kati/ |
flags.cc | 136 num_jobs = strtol(num_jobs_str, NULL, 10); 142 remote_num_jobs = strtol(num_jobs_str, NULL, 10);
|
/external/bsdiff/ |
bsdiff_arguments.cc | 158 long result = strtol(s, &end, 10); 198 long result = strtol(s, &end, 10);
|
/external/cmockery/cmockery_0_1_2/src/example/ |
calculator.c | 177 value = (int)strtol(arguments[0], &end_of_integer, 10); 215 other_value = (int)strtol(arguments[i], &end_of_integer, 10);
|