HomeSort by relevance Sort by last modified time
    Searched defs:arg (Results 1 - 25 of 2574) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/bionic/
ioctl.cpp 37 void* arg = va_arg(ap, void*); local
39 return __ioctl(fd, request, arg);
__cxa_thread_atexit_impl.cpp 23 void *arg; member in class:thread_local_dtor
28 extern "C" int __cxa_thread_atexit_impl(void (*func) (void *), void *arg, void *dso_handle) {
32 dtor->arg = arg;
47 current->func(current->arg);
  /external/autotest/tko/
retrieve_jobs 5 arg = sys.argv[1] variable
7 arg = '' variable
10 for record in db.select('* from tko_jobs ' + arg):
  /external/clang/test/Sema/
block-sentinel-attribute.c 3 void (^e) (int arg, const char * format, ...) __attribute__ ((__sentinel__ (1,1))); variable
6 void (^bbad) (int arg, const char * format) __attribute__ ((__sentinel__)) ; // expected-warning {{'sentinel' attribute only supported for variadic blocks}}
7 bbad = ^void (int arg, const char * format) __attribute__ ((__sentinel__)) {} ; // expected-warning {{'sentinel' attribute only supported for variadic blocks}}
8 void (^b) (int arg, const char * format, ...) __attribute__ ((__sentinel__)) = // expected-note {{block has been explicitly marked sentinel here}}
9 ^ __attribute__ ((__sentinel__)) (int arg, const char * format, ...) {};
10 void (^z) (int arg, const char * format, ...) __attribute__ ((__sentinel__ (2))) = ^ __attribute__ ((__sentinel__ (2))) (int arg, const char * format, ...) {}; // expected-note {{block has been explicitly marked sentinel here}}
13 void (^y) (int arg, const char * format, ...) __attribute__ ((__sentinel__ (5))) = ^ __attribute__ ((__sentinel__ (5))) (int arg, const char * format, ...) {}; // expected-note {{block has been explicitly marked sentinel here}}
  /external/valgrind/none/tests/amd64/
looper.c 4 long long int arg = 0; variable
14 "\tmovq arg, %rcx\n"
34 "\tmovq arg, %rcx\n"
54 "\tmovq arg, %rcx\n"
73 res = 0; arg = 10; loop_plain(); printf("res = %lld\n", res);
75 res = 0; arg = 10; loop_ne(); printf("res = %lld\n", res);
76 res = 0; arg = 500; loop_ne(); printf("res = %lld\n", res);
78 res = 0; arg = 10; loop_e(); printf("res = %lld\n", res);
79 res = 0; arg = 500; loop_e(); printf("res = %lld\n", res);
fxtract.c 5 double arg, res1, res2; variable
12 "\tfldl arg\n"
21 arg = x * 1.414213562373049;
24 printf("%17.10e -> %14.10f %14.10f\n", arg, res1, res2);
  /external/valgrind/none/tests/x86/
looper.c 4 int arg = 0; variable
13 "\tmovl " VG_SYM(arg) ", %ecx\n"
32 "\tmovl " VG_SYM(arg) ", %ecx\n"
51 "\tmovl " VG_SYM(arg) ", %ecx\n"
70 res = 0; arg = 10; loop_plain(); printf("res = %d\n", res);
72 res = 0; arg = 10; loop_ne(); printf("res = %d\n", res);
73 res = 0; arg = 500; loop_ne(); printf("res = %d\n", res);
75 res = 0; arg = 10; loop_e(); printf("res = %d\n", res);
76 res = 0; arg = 500; loop_e(); printf("res = %d\n", res);
fxtract.c 5 double arg, res1, res2; variable
11 "\tfldl " VG_SYM(arg) "\n"
20 arg = x * 1.414213562373049;
23 printf("%17.10e -> %14.10f %14.10f\n", arg, res1, res2);
jcxz.c 6 UInt test_jcxz ( UInt arg )
9 block[0] = arg;
27 UInt test_jecxz ( UInt arg )
30 block[0] = arg;
50 UInt arg = 0x01028374; local
51 printf("test_jcxz(0x%x) = 0x%x\n", arg, test_jcxz(arg));
52 printf("test_jecxz(0x%x) = 0x%x\n", arg, test_jecxz(arg));
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/preprocessed/gcc/
arg.hpp 10 // Preprocessed version of "boost/mpl/arg.hpp" header
14 template<> struct arg< -1 > struct
31 template<> struct arg<1> struct
34 typedef arg<2> next;
49 template<> struct arg<2> struct
52 typedef arg<3> next;
67 template<> struct arg<3> struct
70 typedef arg<4> next;
85 template<> struct arg<4> struct
88 typedef arg<5> next
103 template<> struct arg<5> struct
    [all...]
  /art/test/101-fibonacci/src/
Main.java 46 String arg = (args.length > 1) ? args[1] : "10"; local
48 int x = Integer.parseInt(arg);
  /build/kati/
flags.cc 30 const char* arg = argv[*index]; local
31 if (!HasPrefix(arg, option))
33 if (arg[option.size()] == '\0') {
38 if (arg[option.size()] == '=') {
39 *out_arg = arg + option.size() + 1;
44 *out_arg = arg + option.size();
56 const char* arg = argv[i]; local
59 if (!strcmp(arg, "-f")) {
62 } else if (!strcmp(arg, "-c")) {
64 } else if (!strcmp(arg, "-i"))
    [all...]
  /external/clang/test/CodeGen/
align-systemz.c 31 struct arg { long y __attribute__((packed, aligned(4))); }; struct
33 extern struct arg x;
34 void f(struct arg);
42 // CHECK: load i64, i64* getelementptr inbounds (%struct.arg, %struct.arg* @x, i32 0, i32 0), align 4
  /external/compiler-rt/test/lsan/TestCases/
leak_check_before_thread_started.cc 10 void *func(void *arg) {
12 free(arg);
23 void *arg = malloc(1337); local
24 assert(arg);
25 int res = pthread_create(&thread_id, &attr, func, arg);
  /external/e2fsprogs/intl/
eval-plural.h 46 unsigned long int arg = plural_eval (pexp->val.args[0], n); local
47 return ! arg;
  /external/toybox/toys/other/
mountpoint.c 33 char *arg = *toys.optargs; local
36 if (lstat(arg, &st1)) perror_exit_raw(arg);
50 arg = xmprintf("%s/..", arg);
51 xstat(arg, &st2);
52 if (CFG_TOYBOX_FREE) free(arg);
  /external/toybox/toys/posix/
renice.c 26 char **arg; local
28 for (arg = toys.optargs; *arg; arg++) {
29 char *s = *arg;
41 error_msg("bad '%s'", *arg);
  /external/valgrind/helgrind/tests/
tc03_re_excl.c 18 int* arg = (int*)argV; local
19 use(arg[5]); /* read access */
  /external/apache-xml/src/main/java/org/apache/xalan/extensions/
ExpressionVisitor.java 71 String arg = ((FuncExtFunctionAvailable)func).getArg0().toString(); local
72 if (arg.indexOf(":") > 0)
74 String prefix = arg.substring(0,arg.indexOf(":"));
  /external/bison/lib/
open.c 61 va_list arg; local
62 va_start (arg, flags);
66 mode = va_arg (arg, PROMOTED_MODE_T);
68 va_end (arg);
  /external/boringssl/src/tool/
args.cc 32 const std::string &arg = args[i]; local
35 if (strcmp(arg.c_str(), templates[j].name) == 0) {
42 fprintf(stderr, "Unknown argument: %s\n", arg.c_str());
46 if (out_args->find(arg) != out_args->end()) {
47 fprintf(stderr, "Duplicate argument: %s\n", arg.c_str());
52 (*out_args)[arg] = "";
55 fprintf(stderr, "Missing argument for option: %s\n", arg.c_str());
58 (*out_args)[arg] = args[++i];
  /external/compiler-rt/test/asan/android_commands/
android_compile.py 15 arg = args.pop(0) variable
16 if arg == '-shared':
18 elif arg == '-c':
20 elif arg == '-o':
  /external/elfutils/libdwfl/
dwfl_getdwarf.c 36 void *arg; member in struct:module_callback_info
41 const char *name, Dwarf_Addr start, void *arg)
43 const struct module_callback_info *info = arg;
46 return (*info->callback) (mod, userdata, name, start, dw, bias, info->arg);
54 void *arg,
57 struct module_callback_info info = { callback, arg };
  /external/icu/icu4c/source/tools/toolutil/
uoptions.c 26 char *arg; local
31 arg=argv[i];
32 if(!stopOptions && *arg=='-' && (c=arg[1])!=0) {
35 arg+=2;
38 if(*arg==0) {
45 if(options[j].longName && uprv_strcmp(arg, options[j].longName)==0) {
93 if(*arg!=0) {
95 option->value=arg;
96 /* do not process the rest of this arg as option letters *
    [all...]
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCPreparedStatement.java 8 String arg; field in class:BatchArg
11 BatchArg(String arg, boolean blob) {
12 if (arg == null) {
13 this.arg = null;
15 this.arg = new String(arg);
408 args[k] = b.arg;

Completed in 757 milliseconds

1 2 3 4 5 6 7 8 91011>>