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

1234567891011>>

/external/clang/test/CodeGen/
H A Dmrtd.c3 void baz(int arg);
5 // CHECK: define x86_stdcallcc void @foo(i32 %arg) [[NUW:#[0-9]+]]
6 void foo(int arg) { argument
8 bar(arg);
10 baz(arg);
H A Ddebug-line-1.c11 int f(char* arg) { argument
12 int x = atoi(arg);
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);
/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/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/main/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/main/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/libdwfl/
H A Ddwfl_getmodules.c56 void *arg,
103 int ok = (*callback) (MODCB_ARGS (m), arg);
53 dwfl_getmodules(Dwfl *dwfl, int (*callback) (Dwfl_Module *, void **, const char *, Dwarf_Addr, void *), void *arg, ptrdiff_t offset) argument
/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/compiler-rt/lib/asan/lit_tests/
H A Duse-after-scope-inlined.cc13 void inlined(int arg) { argument
15 for (int i = 0; i < arg; i++) x[i] = i;
/external/dropbear/libtommath/
H A Dbn_mp_sqrt.c19 int mp_sqrt(mp_int *arg, mp_int *ret) argument
25 if (arg->sign == MP_NEG) {
30 if (mp_iszero(arg) == MP_YES) {
35 if ((res = mp_init_copy(&t1, arg)) != MP_OKAY) {
43 /* First approx. (not very bad for large arg) */
47 if ((res = mp_div(arg,&t1,&t2,NULL)) != MP_OKAY) {
56 /* And now t1 > sqrt(arg) */
58 if ((res = mp_div(arg,&t1,&t2,NULL)) != MP_OKAY) {
67 /* t1 >= sqrt(arg) >= t2 at this point */
/external/elfutils/libdw/
H A Ddwarf_getfuncs.c61 void *arg, ptrdiff_t offset)
84 if (callback (die, arg) != DWARF_CB_OK)
60 dwarf_getfuncs(Dwarf_Die *cudie, int (*callback) (Dwarf_Die *, void *), void *arg, ptrdiff_t offset) argument
/external/libcap-ng/libcap-ng-0.7/src/test/
H A Dthread_test.c11 void *thread1_main(void *arg) argument
28 void *thread2_main(void *arg) argument
/external/v8/src/
H A Donce.cc42 void CallOnceImpl(OnceType* once, PointerArgFunction init_func, void* arg) { argument
61 init_func(arg);
/external/valgrind/main/drd/tests/
H A Dlinuxthreads_det.c14 void* thread_func(void* arg) argument
H A Dpth_barrier_race.c22 static void* thread(void* arg) argument
H A Dpth_create_glibc_2_0.c19 static void* thread_func(void *arg) argument
H A Dpth_detached3.c8 static void* thread_func(void* arg) argument
/external/valgrind/main/helgrind/tests/
H A Dtc03_re_excl.c18 int* arg = (int*)argV; local
19 use(arg[5]); /* read access */

Completed in 8786 milliseconds

1234567891011>>