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

1 2 3 4 5 6 7 8 910

  /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);
alarm.c 43 alarmtype_low = alarmtype_high = strtol(optarg, NULL, 0);
50 //timeout.tv_sec = strtol(optarg, NULL, 0);
119 ts.tv_sec += strtol(argv[optind], NULL, 0);
  /device/htc/common/updater/
recovery_updater.c 54 (width = strtol(width_string->data, NULL, 10)) == 0) {
58 (height = strtol(height_string->data, NULL, 10)) == 0) {
62 (bpp = strtol(bpp_string->data, NULL, 10)) == 0) {
  /external/icu4c/tools/genprops/misc/
ucdstrip.c 51 if(strtol(line, &end, 16)>=0 && end!=line) {
  /dalvik/dexopt/
OptMain.c 233 GET_ARG(zipFd, strtol, "bad zip fd");
234 GET_ARG(cacheFd, strtol, "bad cache fd");
338 GET_ARG(vmBuildVersion, strtol, "bad vm build");
344 GET_ARG(fd, strtol, "bad fd");
345 GET_ARG(offset, strtol, "bad offset");
346 GET_ARG(length, strtol, "bad length");
351 GET_ARG(flags, strtol, "bad flags");
  /external/e2fsprogs/lib/e2p/
hashstr.c 63 num = strtol(string+8, &eptr, 10);
mntopts.c 68 num = strtol(string+8, &eptr, 10);
  /system/extras/tests/bionic/libstdc++/
test_cstdlib.cpp 57 using ::strtol;
  /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 );
  /bootable/recovery/applypatch/
main.c 38 size_t bytes = strtol(argv[2], &endptr, 10);
108 size_t target_size = strtol(argv[4], &endptr, 10);
  /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);
  /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 54 using ::strtol;
  /external/webkit/WebKit/android/wds/client/
AdbConnection.cpp 122 payloadLen = strtol(lenStr, NULL, 16);
201 int payloadLen = strtol(lenStr, NULL, 16);
  /ndk/build/platforms/android-5/arch-x86/usr/include/
cstdlib 54 using ::strtol;
  /ndk/build/platforms/android-8/arch-x86/usr/include/
cstdlib 54 using ::strtol;
  /bionic/libc/include/
stdlib.h 64 extern long strtol(const char *, char **, int);

Completed in 576 milliseconds

1 2 3 4 5 6 7 8 910