Searched refs:ap (Results 1 - 25 of 843) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A D2003-08-20-BadBitfieldRef.c5 char *ap; local
6 ap[1] == '-' && ap[2] == 0; local
H A D2002-07-31-SubregFailure.c5 long (*ap)[4]; member in union:__anon2379
10 abase.ap+=27;
11 Assignment(*abase.ap);
H A Darm-vaarg-align.c12 __builtin_va_list ap; local
13 __builtin_va_start(ap, i);
18 long long ll = __builtin_va_arg(ap, long long);
19 __builtin_va_end(ap);
25 __builtin_va_list ap; local
26 __builtin_va_start(ap, i);
31 double ll = __builtin_va_arg(ap, double);
32 __builtin_va_end(ap);
H A Dppc64-varargs-complex.c8 va_list ap; local
10 _Complex int i = va_arg(ap, _Complex int);
25 _Complex short s = va_arg(ap, _Complex short);
40 _Complex char c = va_arg(ap, _Complex char);
53 _Complex float f = va_arg(ap, _Complex float);
H A Dppc64le-varargs-complex.c8 va_list ap; local
10 _Complex int i = va_arg(ap, _Complex int);
24 _Complex short s = va_arg(ap, _Complex short);
38 _Complex char c = va_arg(ap, _Complex char);
50 _Complex float f = va_arg(ap, _Complex float);
H A D2004-02-13-IllegalVararg.c4 __builtin_va_list ap; local
6 __builtin_va_start(ap, X);
7 F = __builtin_va_arg(ap, float);
H A Dppc-sfvarargs.c5 va_list ap; local
6 va_start(ap, fmt);
7 va_arg(ap, double);
8 va_end(ap);
H A Dvfprintf.c5 void foo(__builtin_va_list ap) { argument
6 vfprintf(0, " ", ap);
/external/clang/test/SemaCXX/
H A Dbuiltins-arm.cpp4 int test1(const __builtin_va_list &ap) { argument
5 return __builtin_va_arg(ap, int); // expected-error {{binding value of type 'const __builtin_va_list' to reference to type '__builtin_va_list' drops 'const' qualifier}}
H A Dmicrosoft-varargs-diagnostics.cpp12 va_list ap; local
13 __va_start(&ap); // expected-error{{too few arguments to function call, expected at least 3, have 1}}
17 va_list ap; local
18 __va_start(&ap, &i); // expected-error{{too few arguments to function call, expected at least 3, have 2}}
22 va_list ap; local
23 __va_start(&ap, &i, 4);
29 va_list ap; local
31 __va_start(&ap, &j, 4);
37 va_list ap; local
38 __va_start(&ap,
[all...]
H A Dmicrosoft-varargs.cpp10 va_list ap; local
11 __va_start(&ap, ( &reinterpret_cast<const char &>(i) ),
14 return (*(int *)((ap += ( (sizeof(int) + 4 - 1) & ~(4 - 1) ) + ( ((va_list)0 - (ap)) & (__alignof(int) - 1) )) - ( (sizeof(int) + 4 - 1) & ~(4 - 1) )));
18 __builtin_va_list ap; local
19 __builtin_va_start(ap, i);
20 return __builtin_va_arg(ap, int);
H A Dvarargs.cpp5 __builtin_va_list ap; local
6 __builtin_va_start(ap, s); // expected-warning {{passing an object of reference type to 'va_start' has undefined behavior}}
10 __builtin_va_list ap; local
11 __builtin_va_start(ap, i); // okay
H A DPR9459.cpp6 template<typename>struct ts{}ap() // expected-error {{expected ';' after struct}} expected-error {{requires a type specifier}} function
7 {ts<a>::ap<ae_same<int>::&ae_same<>>::p(a); }; // expected-error {{use of undeclared identifier 'a'}}
/external/clang/test/PCH/Inputs/
H A Dva_arg.h4 #define __ms_va_start(ap, a) __builtin_ms_va_start(ap, a)
5 #define __ms_va_end(ap) __builtin_ms_va_end(ap)
/external/clang/test/CodeGenCXX/
H A Dvirtual-operator-call.cpp7 void f(A a, A *ap) { argument
12 -*ap;
/external/clang/test/Sema/
H A Dvarargs.c6 __builtin_va_list ap; local
8 __builtin_va_start(ap, a, a); // expected-error {{too many arguments to function}}
9 __builtin_va_start(ap, a); // expected-error {{'va_start' used in function with fixed args}}
14 __builtin_va_list ap; local
16 __builtin_va_start(ap, 10); // expected-warning {{second argument to 'va_start' is not the last named parameter}}
17 __builtin_va_start(ap, a); // expected-warning {{second argument to 'va_start' is not the last named parameter}}
18 __builtin_va_start(ap, b);
22 __builtin_va_list ap; local
24 __builtin_va_start(ap, a); // expected-warning {{passing an object that undergoes default argument promotion to 'va_start' has undefined behavior}}
25 __builtin_va_start(ap, (
31 __builtin_va_list ap; local
37 __builtin_va_list ap; local
42 __builtin_va_list ap; local
55 __builtin_va_list ap; local
64 __builtin_va_list ap; local
81 __builtin_va_list ap; local
87 __builtin_va_list ap; local
93 __builtin_va_list ap; local
[all...]
H A Dvarargs-win64.c4 __builtin_va_list ap; local
5 __builtin_va_start(ap, a); // expected-error {{'va_start' used in System V ABI function}}
/external/compiler-rt/test/profile/Inputs/
H A Dinstrprof-icall-promo_1.cc5 A* ap = &a; variable
7 int ref(A* ap) { return ap->A::foo(); } argument
/external/syslinux/com32/lib/
H A Ddprintf.c14 va_list ap; local
16 va_start(ap, format);
17 vdprintf(format, ap);
18 va_end(ap);
H A Dprintf.c10 va_list ap; local
13 va_start(ap, format);
14 rv = vfprintf(stdout, format, ap);
15 va_end(ap);
H A Dsscanf.c9 va_list ap; local
12 va_start(ap, format);
13 rv = vsscanf(str, format, ap);
14 va_end(ap);
/external/android-clat/
H A Dlogging.c32 va_list ap; local
34 va_start(ap, fmt);
35 __android_log_vprint(prio, "clatd", fmt, ap);
36 va_end(ap);
47 va_list ap; local
49 va_start(ap, fmt);
50 __android_log_vprint(prio, "clatd", fmt, ap);
51 va_end(ap);
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.conv/
H A Dp3.cpp10 void test_cvquals(AnyPtr ap) { argument
11 int* const ip = ap;
12 const float * const volatile fp = ap;
17 void test_ref_arg(AnyPtr ap) { argument
18 const int* const &ip = ap;
19 double * const &dp = ap;
/external/syslinux/efi32/include/efi/
H A Defistdarg.h28 #define va_start(ap,v) ( ap = (va_list)&v + _INTSIZEOF(v) )
29 #define va_arg(ap,t) ( *(t *)((ap += _INTSIZEOF(t)) - _INTSIZEOF(t)) )
30 #define va_end(ap) ( ap = (va_list)0 )
/external/syslinux/efi64/include/efi/
H A Defistdarg.h28 #define va_start(ap,v) ( ap = (va_list)&v + _INTSIZEOF(v) )
29 #define va_arg(ap,t) ( *(t *)((ap += _INTSIZEOF(t)) - _INTSIZEOF(t)) )
30 #define va_end(ap) ( ap = (va_list)0 )

Completed in 1030 milliseconds

1234567891011>>