HomeSort by relevance Sort by last modified time
    Searched refs:strtol (Results 1 - 25 of 281) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /build/tools/check_prereq/
check_prereq.c 38 long current = strtol(value, NULL, 10);
40 long install = strtol(argv[1], &end, 10);
  /system/core/sh/
arith_lex.l 62 0x[0-9a-fA-F]+ { yylval = strtol(yytext, 0, 0); return(ARITH_NUM); }
63 0[0-7]* { yylval = strtol(yytext, 0, 0); return(ARITH_NUM); }
64 [1-9][0-9]* { yylval = strtol(yytext, 0, 0); return(ARITH_NUM); }
67 yylval = strtol(v, &v, 0);
  /external/bison/lib/
strtol.c 63 # define strtol __wcstoull_l macro
65 # define strtol __wcstoul_l macro
69 # define strtol __strtoull_l macro
71 # define strtol __strtoul_l macro
77 # define strtol __wcstoll_l macro
79 # define strtol __wcstol_l macro
83 # define strtol __strtoll_l macro
85 # define strtol __strtol_l macro
93 # define strtol wcstoull macro
95 # define strtol wcstou macro
99 # define strtol macro
101 # define strtol macro
107 # define strtol macro
109 # define strtol macro
113 # define strtol macro
252 INTERNAL (strtol) (const STRING_TYPE *nptr, STRING_TYPE **endptr, function
443 strtol (const STRING_TYPE *nptr, STRING_TYPE **endptr, function
    [all...]
  /system/core/toolbox/
setkey.c 46 kbe.kb_table = strtol(optarg, NULL, 0);
49 kbe.kb_index = strtol(optarg, NULL, 0);
52 kbe.kb_value = strtol(optarg, NULL, 0);
hd.c 32 base = strtol(optarg, NULL, 0);
35 count = strtol(optarg, NULL, 0);
38 repeat = strtol(optarg, NULL, 0);
ioctl.c 38 length = strtol(optarg, NULL, 0);
41 arg_size = strtol(optarg, NULL, 0);
70 ioctl_nr = strtol(argv[optind], NULL, 0);
  /external/chromium/third_party/icu/source/tools/genprops/misc/
ucdstrip.c 51 if(strtol(line, &end, 16)>=0 && end!=line) {
  /external/icu4c/tools/genprops/misc/
ucdstrip.c 51 if(strtol(line, &end, 16)>=0 && end!=line) {
  /external/icu4c/tools/genprops/
ucdstrip.c 51 if(strtol(line, &end, 16)>=0 && end!=line) {
  /device/htc/common/updater/
recovery_updater.c 89 (width = strtol(width_string->data, NULL, 10)) == 0) {
93 (height = strtol(height_string->data, NULL, 10)) == 0) {
97 (bpp = strtol(bpp_string->data, NULL, 10)) == 0) {
118 expected_sha1[i] = strtol(data+i*2, NULL, 16);
  /external/e2fsprogs/lib/e2p/
hashstr.c 63 num = strtol(string+8, &eptr, 10);
  /system/extras/tests/bionic/libstdc++/
test_cstdlib.cpp 57 using ::strtol;
  /dalvik/dexopt/
OptMain.c 306 GET_ARG(zipFd, strtol, "bad zip fd");
307 GET_ARG(cacheFd, strtol, "bad cache fd");
443 GET_ARG(vmBuildVersion, strtol, "bad vm build");
449 GET_ARG(fd, strtol, "bad fd");
450 GET_ARG(offset, strtol, "bad offset");
451 GET_ARG(length, strtol, "bad length");
456 GET_ARG(flags, strtol, "bad flags");
  /external/qemu/android/
hw-events.c 156 *ptype = (int) strtol( p, &end, 0 );
172 *pcode = (int) strtol( p, &end, 0 );
185 *pvalue = (int)strtol( p, &end, 0 );
qemu-setup.c 91 *maxtries = strtol( end, NULL, 10 );
117 long port = strtol(proto_port + 4, &end, 10);
233 adb_host_port = (int) strtol( adb_host_port_str, NULL, 0 );
258 int console_port = strtol( android_op_ports, &comma_location, 0 );
265 int adb_port = strtol( comma_location+1, &end, 0 );
288 int port = strtol( android_op_port, &end, 0 );
  /bootable/recovery/applypatch/
main.c 38 size_t bytes = strtol(argv[2], &endptr, 10);
108 size_t target_size = strtol(argv[4], &endptr, 10);
  /external/libvpx/vpx_ports/
x86.h 75 return (int)strtol(env, NULL, 0);
80 mask = strtol(env, NULL, 0);
  /bionic/libc/stdlib/
strtol.c 1 /* $OpenBSD: strtol.c,v 1.7 2005/08/08 08:05:37 espie Exp $ */
44 strtol(const char *nptr, char **endptr, int base) function
  /external/iproute2/tc/
q_gred.c 65 dps = strtol(*argv, (char **)NULL, 10);
75 def_dp = strtol(*argv, (char **)NULL, 10);
165 opt.DP=strtol(*argv, (char **)NULL, 10);
197 opt.prio=strtol(*argv, (char **)NULL, 10);
  /external/ipsec-tools/src/racoon/
str2val.c 116 *rp++ = (char)strtol(b, NULL, base);
  /external/libvpx/
args.c 143 rawval = strtol(arg->val, &endptr, 10);
164 rawval = strtol(arg->val, &endptr, 10);
192 rawval = strtol(arg->val, &endptr, 10);
204 rawval = strtol(endptr + 1, &endptr, 10);
  /hardware/ril/reference-ril/
at_tok.c 94 * "base" is the same as the base param in strtol
116 l = strtol(ret, &end, base);
  /system/core/include/cutils/
sockets.h 69 fd = strtol(val, NULL, 10);
  /bionic/libstdc++/include/
cstdlib 58 using ::strtol;
  /external/libvpx/examples/
encoder_tmpl.c 127 width = strtol(argv[1], NULL, 0);
128 height = strtol(argv[2], NULL, 0);

Completed in 226 milliseconds

1 2 3 4 5 6 7 8 91011>>