Searched defs:arg (Results 1 - 25 of 1324) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A Ddebug-line-1.c11 int f(char* arg) { argument
12 int x = atoi(arg);
H A Dsystemz-abi.cpp7 struct agg_float_cpp pass_agg_float_cpp(struct agg_float_cpp arg) { return arg; } argument
H A D2008-07-31-asm-labels.c24 void pipe(int arg) { argument
H A Dattr-minsize.cpp40 void test4(T arg) { argument
45 void test4<int>(int arg);
52 void test4<float>(float arg);
59 void test5(T arg) { argument
64 void test5<int>(int arg);
71 void test5<float>(float arg);
H A Dmrtd.c5 void baz(int arg);
7 // CHECK: define x86_stdcallcc void @foo(i32 %arg) [[NUW:#[0-9]+]]
8 void foo(int arg) { argument
10 bar(arg);
12 baz(arg);
19 void qux(int arg, ...) { } argument
20 // CHECK: define void @qux(i32 %arg, ...)
/external/clang/test/CodeGenCXX/
H A Dmember-init-assignment.cpp7 Foo(unsigned arg);
10 Foo::Foo(unsigned arg) : file_id(arg = 42) argument
13 // CHECK: define {{.*}} @_ZN3FooC2Ej(%struct.Foo* %this, i32 %arg) unnamed_addr
/external/clang/test/Sema/
H A Dblock-sentinel-attribute.c3 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}}
H A Dtypedef-prototype.c4 typedef int unary_int_func(int arg);
7 int add_one(int arg) { argument
8 return arg + 1;
/external/libunwind/src/coredump/
H A D_UPT_put_unwind_info.c30 _UCD_put_unwind_info (unw_addr_space_t as, unw_proc_info_t *pi, void *arg) argument
H A D_UPT_resume.c30 _UCD_resume (unw_addr_space_t as, unw_cursor_t *c, void *arg) argument
/external/libunwind/src/mi/
H A DGput_dynamic_unwind_info.c30 void *arg)
37 unwi_dyn_remote_put_unwind_info (as, pi, arg);
40 unwi_dyn_remote_put_unwind_info (as, pi, arg);
48 tdep_put_unwind_info (as, pi, arg);
29 unwi_put_dynamic_unwind_info(unw_addr_space_t as, unw_proc_info_t *pi, void *arg) argument
/external/libunwind/src/ptrace/
H A D_UPT_put_unwind_info.c29 _UPT_put_unwind_info (unw_addr_space_t as, unw_proc_info_t *pi, void *arg) argument
H A D_UPT_resume.c29 _UPT_resume (unw_addr_space_t as, unw_cursor_t *c, void *arg) argument
31 struct UPT_info *ui = arg;
/external/llvm/test/DebugInfo/Inputs/
H A Ddwarfdump-test-32bit.elf.c5 int foo(int arg) { argument
6 int a = arg * 2;
10 int bar(int arg) { argument
11 int a = foo(arg) * foo(arg * 2);
/external/valgrind/none/tests/amd64/
H A Dlooper.c4 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);
/external/valgrind/none/tests/x86/
H A Dlooper.c4 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);
/external/elfutils/src/libdwfl/
H A Ddwfl_getmodules.c35 void *arg,
82 int ok = (*callback) (MODCB_ARGS (m), arg);
32 dwfl_getmodules(Dwfl *dwfl, int (*callback) (Dwfl_Module *, void **, const char *, Dwarf_Addr, void *), void *arg, ptrdiff_t offset) argument
/external/libunwind/src/mips/
H A DGresume.c34 mips_local_resume (unw_addr_space_t as, unw_cursor_t *cursor, void *arg) argument
/external/llvm/test/tools/dsymutil/Inputs/
H A Dbasic3.c16 int bar(int arg) { argument
17 if (arg > 42)
19 return foo(val + arg);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/
H A DFunctionDelegates.cs39 public delegate TResult Func<T, TResult>(T arg); argument
/external/bison/lib/
H A Dsignbitd.c31 gl_signbitd (double arg) argument
43 m.value = arg;
46 return copysign (1.0, arg) < 0;
50 if (isnand (arg))
52 if (arg < 0.0)
54 else if (arg == 0.0)
58 double arg_mem = arg;
H A Dsignbitf.c31 gl_signbitf (float arg) argument
43 m.value = arg;
46 return copysignf (1.0f, arg) < 0;
50 if (isnanf (arg))
52 if (arg < 0.0f)
54 else if (arg == 0.0f)
58 float arg_mem = arg;
H A Dsignbitl.c31 gl_signbitl (long double arg) argument
43 m.value = arg;
46 return copysignl (1.0L, arg) < 0;
50 if (isnanl (arg))
52 if (arg < 0.0L)
54 else if (arg == 0.0L)
58 long double arg_mem = arg;
/external/boringssl/src/tool/
H A Dargs.cc30 const std::string &arg = args[i]; local
33 if (strcmp(arg.c_str(), templates[j].name) == 0) {
40 fprintf(stderr, "Unknown argument: %s\n", arg.c_str());
44 if (out_args->find(arg) != out_args->end()) {
45 fprintf(stderr, "Duplicate argument: %s\n", arg.c_str());
50 (*out_args)[arg] = "";
53 fprintf(stderr, "Missing argument for option: %s\n", arg.c_str());
56 (*out_args)[arg] = args[++i];
/external/compiler-rt/test/asan/TestCases/
H A Duse-after-scope-inlined.cc11 void inlined(int arg) { argument
13 for (int i = 0; i < arg; i++) x[i] = i;

Completed in 5629 milliseconds

1234567891011>>