Searched defs:arg (Results 1 - 25 of 888) 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) nounwind
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
/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.c3 typedef int unary_int_func(int arg);
6 int add_one(int arg) { argument
7 return arg + 1;
/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);
H A Dfxtract.c5 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/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);
H A Dfxtract.c5 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);
H A Djcxz.c6 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));
/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/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 */
/external/webkit/Source/JavaScriptCore/qt/api/
H A Dqscriptfunction_p.h45 QNativeFunctionWithArgData(QScriptEnginePrivate* engine, QScriptEngine::FunctionWithArgSignature fun, void* arg) argument
48 , arg(arg)
54 void* arg; member in struct:QNativeFunctionWithArgData
/external/android-mock/tests/com/google/android/testing/mocking/
H A DClassHasOverloadedMethods.java28 public void foo(int arg) { argument
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/
H A DErrorManager.cs84 public static void Error(/*int msgID,*/ object arg) argument
87 //getErrorListener().error(new ToolMessage(msgID, arg));
90 //sb.AppendFormat("internal error: {0} {1}", arg);
91 sb.AppendFormat("internal error: {0} ", arg);
95 INTERNAL_ERROR(arg,arg2,exception,stackTrace) ::= <<
96 internal error: <arg> <arg2><if(exception)>: <exception><endif>

Completed in 9661 milliseconds

1234567891011>>