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

1 2 3 4 5 6 7 8 91011>>

  /external/compiler-rt/lib/asan/lit_tests/Linux/
interception_failure_test.cc 15 extern "C" long strtol(const char *nptr, char **endptr, int base) { function
23 return (int)strtol(x, 0, 10);
interception_test.cc 15 extern "C" long strtol(const char *nptr, char **endptr, int base) { function
23 return (int)strtol(x, 0, 10);
interception_malloc_test.cc 24 return (int)strtol(x, 0, 10);
  /build/tools/check_prereq/
check_prereq.c 38 long current = strtol(value, NULL, 10);
40 long install = strtol(argv[1], &end, 10);
  /external/bison/lib/
strtol.c 57 # define strtol __wcstoull_l macro
59 # define strtol __wcstoul_l macro
63 # define strtol __strtoull_l macro
65 # define strtol __strtoul_l macro
71 # define strtol __wcstoll_l macro
73 # define strtol __wcstol_l macro
77 # define strtol __strtoll_l macro
79 # define strtol __strtol_l macro
87 # define strtol wcstoull macro
89 # define strtol wcstou macro
93 # define strtol macro
95 # define strtol macro
101 # define strtol macro
103 # define strtol macro
107 # define strtol macro
238 INTERNAL (strtol) (const STRING_TYPE *nptr, STRING_TYPE **endptr, function
429 strtol (const STRING_TYPE *nptr, STRING_TYPE **endptr, function
    [all...]
  /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);
  /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 33 base = strtol(optarg, NULL, 0);
36 count = strtol(optarg, NULL, 0);
39 repeat = strtol(optarg, NULL, 0);
ioctl.c 41 length = strtol(optarg, NULL, 0);
44 arg_size = strtol(optarg, NULL, 0);
73 ioctl_nr = strtol(argv[optind], NULL, 0);
  /external/llvm/utils/count/
count.c 22 Count = strtol(argv[1], &End, 10);
  /external/e2fsprogs/lib/e2p/
hashstr.c 64 num = strtol(string+8, &eptr, 10);
  /hardware/ti/omap4xxx/domx/mm_osal/src/
timm_osal_trace.c 100 val ? strtol(val, NULL, 0) : DEFAULT_TRACE_LEVEL;
  /system/extras/tests/bionic/libstdc++/
test_cstdlib.cpp 57 using ::strtol;
  /external/libxslt/libxslt/
extra.c 204 field = strtol(digits, NULL, 10);
209 field = strtol(digits, NULL, 10);
214 field = strtol(digits, NULL, 10);
219 field = strtol(digits, NULL, 10);
224 field = strtol(digits, NULL, 10);
229 field = strtol(digits, NULL, 10);
  /dalvik/dexopt/
OptMain.cpp 303 GET_ARG(zipFd, strtol, "bad zip fd");
304 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/libvpx/libvpx/
args.c 158 rawval = strtol(arg->val, &endptr, 10);
179 rawval = strtol(arg->val, &endptr, 10);
207 rawval = strtol(arg->val, &endptr, 10);
219 rawval = strtol(endptr + 1, &endptr, 10);
241 rawval = strtol(arg->val, &endptr, 10);
  /hardware/ti/omap4xxx/camera/
CameraHalUtilClasses.cpp 246 left = static_cast<ssize_t>(strtol(pStart, &pEnd, 10));
257 top = static_cast<ssize_t>(strtol(pEnd+1, &pEnd, 10));
268 right = static_cast<ssize_t>(strtol(pEnd+1, &pEnd, 10));
279 bottom = static_cast<ssize_t>(strtol(pEnd+1, &pEnd, 10));
290 weight = static_cast<ssize_t>(strtol(pEnd+1, &pEnd, 10));
  /external/qemu/android/
hw-events.c 156 *ptype = (int) strtol( p, &end, 0 );
176 *pcode = (int) strtol( p, &end, 0 );
189 *pvalue = (int)strtol( p, &end, 0 );
qemu-setup.c 98 *maxtries = strtol( end, NULL, 10 );
124 long port = strtol(proto_port + 4, &end, 10);
240 adb_host_port = (int) strtol( adb_host_port_str, NULL, 0 );
267 int console_port = strtol( android_op_ports, &comma_location, 0 );
274 int adb_port = strtol( comma_location+1, &end, 0 );
304 int port = strtol( android_op_port, &end, 0 );
  /external/clang/lib/Basic/
Builtins.cpp 98 FormatIdx = strtol(Printf, 0, 10);
117 FormatIdx = strtol(Scanf, 0, 10);
  /external/clang/test/CodeGen/
libcalls-fno-builtin.c 26 long int strtol(const char *nptr, char **endptr, int base);
111 long int t21(char **x) { return strtol("1234", x, 10); }
113 // CHECK: strtol
  /external/libvpx/libvpx/vpx_ports/
arm_cpudetect.c 21 *flags = (int)strtol(env, NULL, 0);
32 return env && *env ? (int)strtol(env, NULL, 0) : ~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/aac/libSYS/include/
cmdl_parser.h 165 #define _tcstol strtol
  /external/compiler-rt/lib/asan/
asan_intercepted_functions.h 104 long strtol(const char *nptr, char **endptr, int base); // NOLINT

Completed in 840 milliseconds

1 2 3 4 5 6 7 8 91011>>