Searched defs:__declspec (Results 1 - 20 of 20) sorted by relevance

/external/clang/test/CodeGen/
H A Dms-declspecs.c3 __declspec(selectany) int x1 = 1;
4 const __declspec(selectany) int x2 = 2;
9 __declspec(selectany) int x3;
10 extern __declspec(selectany) int x4;
14 struct __declspec(align(16)) S {
23 __declspec(naked) void t3() {} function
26 void __declspec(nothrow) t22();
30 __declspec(noinline) void t2() {} function
33 __declspec(noreturn) void f20_t(void);
36 __declspec(noalia
[all...]
H A Ddllexport.c14 __declspec(dllexport) extern int ExternGlobalDecl;
18 __declspec(dllexport) int GlobalDef;
22 __declspec(dllexport) int GlobalInit = 1;
26 __declspec(dllexport) extern int GlobalDeclInit;
31 __declspec(dllexport) extern int GlobalRedecl1;
32 __declspec(dllexport) int GlobalRedecl1;
35 __declspec(dllexport) extern int GlobalRedecl2;
48 __declspec(dllexport) void def(void) {} function
53 __declspec(dllexport) inline void inlineFunc(void) {} function
54 __declspec(dllexpor function
102 void __declspec(dllimport) __declspec(dllexport) precedence1B(void) {} function
107 void __declspec(dllexport) __declspec(dllimport) precedence2B(void) {} function
[all...]
H A Ddllimport.c21 __declspec(dllimport) extern int ExternGlobalDecl;
26 __declspec(dllimport) int GlobalDecl;
31 __declspec(dllimport) extern int GlobalRedecl1;
32 __declspec(dllimport) extern int GlobalRedecl1;
36 __declspec(dllimport) int GlobalRedecl2;
37 __declspec(dllimport) int GlobalRedecl2;
43 __declspec(dllimport) extern int GlobalRedecl3;
50 __declspec(dllimport) extern int GlobalRedecl4;
56 __declspec(dllimport) extern int GlobalRedecl5;
62 __declspec(dllimpor
87 __declspec(dllimport) inline void inlineFunc(void) {} function
98 __declspec(dllimport) __attribute__((always_inline)) inline void alwaysInline(void) {} function
[all...]
H A Dms-inline-asm-functions.c9 __declspec(dllimport) int kimport(int);
50 void __declspec(naked) naked() { function
/external/clang/test/Index/
H A Dindex-attrs.c3 void __declspec(dllexport) export_function(void) {} function
10 void __declspec(dllimport) import_function(void);
/external/python/cpython2/Modules/_ctypes/libffi_msvc/
H A Dwin32.c40 __declspec(naked) int function
/external/python/cpython3/Modules/_ctypes/libffi_msvc/
H A Dwin32.c40 __declspec(naked) int function
/external/clang/test/Sema/
H A DMicrosoftCompatibility.c14 __declspec(noreturn) void f6( void ) { function
18 __declspec(align(32768)) struct S1 { int a; } s; /* expected-error {{requested alignment must be 8192 bytes or smaller}} */
19 struct __declspec(aligned) S2 {}; /* expected-warning {{__declspec attribute 'aligned' is not supported}} */ function
21 struct __declspec(appdomain) S3 {}; /* expected-warning {{__declspec attribute 'appdomain' is not supported}} */ function
23 __declspec(__noreturn__) void f7(void); /* expected-warning {{__declspec attribute '__noreturn__' is not supported}} */
H A Ddllexport.c7 __declspec(dllexport) typedef int typedef1; // expected-warning{{'dllexport' attribute only applies to variables and functions}}
8 typedef __declspec(dllexport) int typedef2; // expected-warning{{'dllexport' attribute only applies to variables and functions}}
9 typedef int __declspec(dllexport) typedef3; // expected-warning{{'dllexport' attribute only applies to variables and functions}}
10 typedef __declspec(dllexport) void (*FunTy)(); // expected-warning{{'dllexport' attribute only applies to variables and functions}}
11 enum __declspec(dllexport) Enum { EnumVal }; // expected-warning{{'dllexport' attribute only applies to variables and functions}} function
12 struct __declspec(dllexport) Record {}; // expected-warning{{'dllexport' attribute only applies to variables and functions}} function
21 __declspec(dllexport) extern int ExternGlobalDecl;
24 __declspec(dllexport) int GlobalDef;
27 __declspec(dllexport) int GlobalInit1 = 1;
28 int __declspec(dllexpor
80 __declspec(dllexport) inline void inlineFunc1() {} function
102 __declspec(dllexport) inline void redecl5() {} // expected-error{{redeclaration of 'redecl5' cannot add 'dllexport' attribute}} function
149 void __declspec(dllimport) __declspec(dllexport) precedence1B() {} // expected-warning{{'dllimport' attribute ignored}} function
152 void __declspec(dllexport) __declspec(dllimport) precedence2B() {} // expected-warning{{'dllimport' attribute ignored}} function
[all...]
H A Dms-inline-asm.c108 __declspec(naked) int t5(int x) { // expected-note {{attribute is here}} function
114 __declspec(naked) int t6(int x) { function
H A Dpragma-ms_struct.c62 struct __declspec(ms_struct) bad { // expected-warning {{__declspec attribute 'ms_struct' is not supported}} function
H A Ddllimport.c7 __declspec(dllimport) typedef int typedef1; // expected-warning{{'dllimport' attribute only applies to variables and functions}}
8 typedef __declspec(dllimport) int typedef2; // expected-warning{{'dllimport' attribute only applies to variables and functions}}
9 typedef int __declspec(dllimport) typedef3; // expected-warning{{'dllimport' attribute only applies to variables and functions}}
10 typedef __declspec(dllimport) void (*FunTy)(); // expected-warning{{'dllimport' attribute only applies to variables and functions}}
11 enum __declspec(dllimport) Enum { EnumVal }; // expected-warning{{'dllimport' attribute only applies to variables and functions}} function
12 struct __declspec(dllimport) Record {}; // expected-warning{{'dllimport' attribute only applies to variables and functions}} function
21 __declspec(dllimport) extern int ExternGlobalDecl;
24 __declspec(dllimport) int GlobalDecl;
32 __declspec(dllimport) extern int ExternGlobalInit = 1; // expected-error{{definition of dllimport data}}
33 __declspec(dllimpor
153 __declspec(dllimport) void def() {} // expected-error{{dllimport cannot be applied to non-inline function definition}} function
160 __declspec(dllimport) inline void inlineFunc1() {} function
205 __declspec(dllimport) inline void redecl7() {} function
[all...]
H A DMicrosoftExtensions.c29 struct __declspec(uuid("00000000-0000-0000-C000-000000000046")) IUnknown {}; /* expected-error {{'uuid' attribute is not supported in C}} */
121 __declspec(deprecated("This is deprecated")) enum DE1 { one, two } e1; // expected-note {{'e1' has been explicitly marked deprecated here}}
122 struct __declspec(deprecated) DS1 { int i; float f; }; // expected-note {{'DS1' has been explicitly marked deprecated here}} function
125 __declspec(deprecated(MY_TEXT)) void Dfunc1( void ) {} // expected-note {{'Dfunc1' has been explicitly marked deprecated here}}
127 struct __declspec(deprecated(123)) DS2 {}; // expected-error {{'deprecated' attribute requires a string}}
/external/tpm2/include/tpm2/
H A DTpmBuildSwitches.h17 #define __declspec(x) macro
19 #define ALIGN_TO(boundary) __declspec(align(boundary))
52 #define LIB_EXPORT __declspec(dllexport)
59 #define LIB_IMPORT __declspec(dllimport)
64 #define _No_Return_ __declspec(noreturn)
/external/python/cpython2/Tools/msi/
H A Dmsisupport.c22 UINT __declspec(dllexport) __stdcall CheckDir(MSIHANDLE hInstall) function
52 UINT __declspec(dllexport) __stdcall UpdateEditIDLE(MSIHANDLE hInstall) function
/external/clang/test/Lexer/
H A Dkeywords_test.cpp60 // __declspec extension
61 DECLSPEC_KEYWORD(__declspec); variable
/external/clang/test/Parser/
H A DMicrosoftExtensions.c6 extern __declspec(dllimport) void __stdcall VarR4FromDec(void);
7 __declspec(deprecated) __declspec(deprecated) char * __cdecl ltoa( long _Val, char * _DstBuf, int _Radix);
8 __declspec(safebuffers) __declspec(noalias) __declspec(restrict) void * __cdecl xxx(void *_Memory); /* expected-warning{{__declspec attribute 'safebuffers' is not supported}} */
44 enum __declspec(deprecated) E2 { i, j, k }; /* expected-note {{'E2' has been explicitly marked deprecated here}} */ function
45 __declspec(deprecated) enum E3 { a, b, c } e; /* expected-note {{'e' has been explicitly marked deprecated here}} */ function
67 struct __declspec(frobbl
[all...]
/external/mesa3d/src/gallium/drivers/swr/rasterizer/common/
H A Dos.h49 #define OSALIGN(RWORD, WIDTH) __declspec(align(WIDTH)) RWORD
50 #define THREAD __declspec(thread)
127 #define __declspec(x) __declspec_##x macro
137 #define __declspec(X) macro
/external/sqlite/dist/orig/
H A Dsqlite3.c12138 # define SQLITE_NOINLINE __declspec(noinline)
24550 __declspec(naked) __inline sqlite_uint64 __cdecl sqlite3Hwtime(void){ function
30910 __declspec(naked) __inline sqlite_uint64 __cdecl sqlite3Hwtime(void){ function
38588 __declspec(naked) __inline sqlite_uint64 __cdecl sqlite3Hwtime(void){ function
80436 __declspec(naked) __inline sqlite_uint64 __cdecl sqlite3Hwtime(void){ function
154744 __declspec(dllexport) function
171270 __declspec(dllexport) function
171826 __declspec(dllexport) function
185941 __declspec(dllexport) function
203422 __declspec(dllexport) function
203435 __declspec(dllexport) function
207586 __declspec(dllexport) function
[all...]
/external/sqlite/dist/
H A Dsqlite3.c12138 # define SQLITE_NOINLINE __declspec(noinline)
24550 __declspec(naked) __inline sqlite_uint64 __cdecl sqlite3Hwtime(void){ function
30910 __declspec(naked) __inline sqlite_uint64 __cdecl sqlite3Hwtime(void){ function
38588 __declspec(naked) __inline sqlite_uint64 __cdecl sqlite3Hwtime(void){ function
80436 __declspec(naked) __inline sqlite_uint64 __cdecl sqlite3Hwtime(void){ function
154756 __declspec(dllexport) function
171282 __declspec(dllexport) function
171838 __declspec(dllexport) function
185953 __declspec(dllexport) function
203434 __declspec(dllexport) function
203447 __declspec(dllexport) function
207598 __declspec(dllexport) function
[all...]

Completed in 1430 milliseconds