OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:__attribute
(Results
26 - 50
of
107
) sorted by null
1
2
3
4
5
/external/clang/test/CodeGen/
pragma-weak.c
87
void __declfirstattr(void)
__attribute
((noinline));
94
//// ensure that pragma weak/
__attribute
((weak)) play nice
98
__attribute
((weak)) void mix(void) { }
104
void __mix2(void)
__attribute
((noinline));
105
void __mix2(void)
__attribute
((noinline));
109
////////////// test #pragma weak/
__attribute
combinations
113
void both(void)
__attribute
((alias("__both")));
123
void both2(void)
__attribute
((alias("__both2"))); // first, wins
130
void __a1(void)
__attribute
((noinline));
136
__attribute
((pure,noinline,const)) void __xxx(void) {
[
all
...]
alias.c
30
extern int g1
__attribute
((alias("g0")));
44
extern void f1(void)
__attribute
((alias("f0")));
alignment.c
3
__attribute
((aligned(16))) float a[128];
4
union {int a[4];
__attribute
((aligned(16))) float b[4];} b;
packed-nest-unpacked.c
4
struct Y { char x[13]; struct X y; }
__attribute
((packed));
58
}
__attribute
((packed));
regparm.c
11
typedef void (*FType)(int, int)
__attribute
((regparm (3), stdcall));
typedef
compound-literal.c
6
typedef int v4i32
__attribute
((vector_size(16)));
const-init.c
120
struct g22 {int x;}
__attribute
((packed));
137
typedef long long v1i64
__attribute
((vector_size(8)));
138
typedef short v12i16
__attribute
((vector_size(24)));
139
typedef long double v2f80
__attribute
((vector_size(24)));
x86_32-arguments-darwin.c
157
typedef int v39
__attribute
((vector_size(16)));
289
struct s59 { float x
__attribute
((aligned(8))); };
293
struct s60 { int x
__attribute
((aligned(8))); };
297
typedef int T61
__attribute
((vector_size(16)));
302
typedef int T62
__attribute
((vector_size(16)));
303
struct s62 { T62 x; int y; }
__attribute
((packed, aligned(8)));
310
typedef int T63
__attribute
((vector_size(16)));
332
typedef int T66
__attribute
((vector_size(16)));
blocks.c
60
char buffer[32]
__attribute
((aligned));
builtin-memfns.c
80
__attribute
((aligned(16))) int x[4], y[4];
/external/clang/test/Sema/
mips16_attr_allowed.c
23
__attribute
((nomips16)) int a; // expected-error {{attribute only applies to functions}}
25
__attribute
((mips16)) int b; // expected-error {{attribute only applies to functions}}
attr-mode.c
10
typedef int i16_1
__attribute
((mode(HI)));
12
typedef int i16_2
__attribute
((__mode__(__HI__)));
15
typedef float f64
__attribute
((mode(DF)));
18
typedef int invalid_1
__attribute
((mode)); // expected-error{{'mode' attribute takes one argument}}
19
typedef int invalid_2
__attribute
((mode())); // expected-error{{'mode' attribute takes one argument}}
20
typedef int invalid_3
__attribute
((mode(II))); // expected-error{{unknown machine mode}}
21
typedef struct {int i,j,k;} invalid_4
__attribute
((mode(SI))); // expected-error{{mode attribute only supported for integer and floating-point types}}
22
typedef float invalid_5
__attribute
((mode(SI))); // expected-error{{type of machine mode does not match type of base type}}
25
typedef unsigned unwind_word
__attribute
((mode(unwind_word)));
27
int **
__attribute
((mode(QI)))* i32; // expected-error{{mode attribute}
[
all
...]
inline-redef.c
5
#define GNU_INLINE
__attribute
((__gnu_inline__))
altivec-init.c
3
typedef int v4
__attribute
((vector_size(16)));
4
typedef short v8
__attribute
((vector_size(16)));
init.c
127
typedef int32_t ivector4
__attribute
((vector_size(16)));
148
int PR4386_foo()
__attribute
((weak));
154
int PR4386_zed()
__attribute
((weak));
attr-deprecated.c
118
foo_dep a
__attribute
((deprecated));
120
foo_dep c, d
__attribute
((deprecated)); // expected-warning {{'foo_dep' is deprecated}}
121
__attribute
((deprecated)) foo_dep e, f;
124
typedef int test23_ty
__attribute
((deprecated));
/external/clang/test/Analysis/
malloc-annotations.c
7
void
__attribute
((ownership_returns(malloc))) *my_malloc(size_t);
8
void
__attribute
((ownership_takes(malloc, 1))) my_free(void *);
10
__attribute
((ownership_holds(malloc, 1, 2)));
11
void
__attribute
((ownership_returns(malloc, 1))) *my_malloc2(size_t);
12
void
__attribute
((ownership_holds(malloc, 1))) my_hold(void *);
17
void
__attribute
((ownership_holds(malloc, 1)))
18
__attribute
((ownership_holds(malloc, 1)))
19
__attribute
((ownership_holds(malloc, 3))) my_hold2(void *, void *, void *);
/external/clang/test/Parser/
cxx-attributes.cpp
24
__attribute
((typename)) int x; // expected-warning {{unknown attribute 'typename' ignored}}
/external/clang/test/CodeGenCXX/
pragma-visibility.cpp
12
struct
__attribute
((visibility("default"))) x2 {
43
namespace n
__attribute
((visibility("default"))) {
49
namespace n
__attribute
((visibility("default"))) {
regparm.cpp
34
__attribute
((regparm(2))) void foo4(S3 a, int b);
copy-constructor-elim.cpp
51
typedef V V_over_aligned
__attribute
((aligned(8)));
optnone-and-attributes.cpp
44
__attribute__((noreturn))
__attribute
((optnone))
/external/protobuf/objectivec/
GPBCodedInputStream_PackagePrivate.h
99
__attribute
((ns_returns_retained));
101
__attribute
((ns_returns_retained));
103
GPBCodedInputStreamState *state)
__attribute
((ns_returns_retained));
/external/clang/test/Misc/
ast-dump-attr.cpp
97
M:
__attribute
(()) int j;
102
N:
__attribute
(()) ;
/external/libpcap/pcap/
funcattrs.h
167
* Compiler with support for
__attribute
((noreturn)), or GCC 2.5 and
172
#define PCAP_NORETURN
__attribute
((noreturn))
173
#define PCAP_NORETURN_DEF
__attribute
((noreturn))
Completed in 1307 milliseconds
1
2
3
4
5