OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:stdcall
(Results
1 - 25
of
47
) sorted by null
1
2
/external/clang/test/CodeGen/
pr25786.c
4
void (__attribute__((regparm(3),
stdcall
)) *pf) ();
5
void (__attribute__((regparm(2),
stdcall
)) foo)(int a) {
2009-05-22-callingconv.c
9
__attribute__ ((regparm (3),
stdcall
));
regparm.c
11
typedef void (*FType)(int, int) __attribute ((regparm (3),
stdcall
));
stdcall-fastcall.c
4
void __attribute__((
stdcall
)) f2(void);
11
void __attribute__((
stdcall
)) f5(void) {
24
void (__attribute__((
stdcall
)) *pf2)(void) = f2;
27
void (__attribute__((
stdcall
)) *pf5)(void) = f5;
46
void __attribute((
stdcall
)) f7(foo) int foo; {}
/external/clang/test/Sema/
pr25786.c
5
void (__attribute__((regparm(3),
stdcall
)) *pf) (); //expected-warning {{calling convention '
stdcall
' ignored for this target}}
6
void (__attribute__((regparm(2),
stdcall
)) foo)(int a) { //expected-warning {{calling convention '
stdcall
' ignored for this target}}
10
void (__attribute__((regparm(3),
stdcall
)) *pf) ();
11
void (__attribute__((regparm(2),
stdcall
)) foo)(int a) {}
mrtd.c
6
// expected-error@+5 {{function declared '
stdcall
' here was previously declared without calling convention}}
8
// expected-error@+5 {{function declared '
stdcall
' here was previously declared without calling convention}}
11
void __attribute__((
stdcall
)) nonvariadic1(int a, int b, int c);
13
void __attribute__((
stdcall
)) nonvariadic2(int a, int b, int c) { }
15
// expected-warning@+2 {{
stdcall
calling convention ignored on variadic function}}
17
void __attribute__((
stdcall
)) variadic(int a, ...);
21
// expected-error@+3 {{redeclaration of 'a' with a different type: 'void ((*))(int, int) __attribute__((cdecl))' vs 'void (*)(int, int) __attribute__((
stdcall
))'}}
31
// expected-error@+3 {{redeclaration of 'c' with a different type: 'void ((*))(int, int) __attribute__((
stdcall
))' vs 'void (*)(int, int)'}}
34
__attribute__((
stdcall
)) extern void (*c)(int, int);
36
// expected-warning@+2 {{
stdcall
calling convention ignored on variadic function}
[
all
...]
stdcall-fastcall-x64.c
4
int __attribute__((
stdcall
)) var1; // expected-warning{{'
stdcall
' only applies to function types; type here is 'int'}}
8
void __attribute__((
stdcall
, fastcall)) foo3(void); // expected-warning{{calling convention '
stdcall
' ignored for this target}} expected-warning {{calling convention 'fastcall' ignored for this target}}
9
void __attribute__((
stdcall
)) foo4(); // expected-warning{{calling convention '
stdcall
' ignored for this target}}
14
void rdar8876096foo2(int i, int j) __attribute__((fastcall,
stdcall
)); // expected-warning{{calling convention '
stdcall
' ignored for this target}} expected-warning {{calling convention 'fastcall' ignored for this target}}
16
void rdar8876096foo4(int i, int j) __attribute__((
stdcall
, cdecl)); // expected-warning{{calling convention '
stdcall
' ignored for this target}
[
all
...]
stdcall-fastcall.c
4
int __attribute__((
stdcall
)) var1; // expected-warning{{'
stdcall
' only applies to function types; type here is 'int'}}
8
void __attribute__((
stdcall
, fastcall)) foo3(void); // expected-error{{fastcall and
stdcall
attributes are not compatible}}
9
void __attribute__((
stdcall
)) foo4(); // expected-note{{previous declaration is here}} expected-warning{{function with no prototype cannot use the
stdcall
calling convention}}
10
void __attribute__((fastcall)) foo4(void); // expected-error{{function declared 'fastcall' here was previously declared '
stdcall
'}}
14
void rdar8876096foo2(int i, int j) __attribute__((fastcall,
stdcall
)); // expected-error {{not compatible}}
16
void rdar8876096foo4(int i, int j) __attribute__((
stdcall
, cdecl)); // expected-error {{not compatible}}
17
void rdar8876096foo5(int i, int j) __attribute__((
stdcall
, fastcall)); // expected-error {{not compatible}
[
all
...]
callingconv.c
7
void __attribute__((
stdcall
)) bar(float *a) {
21
void __attribute__((
stdcall
)) test3(int a, ...) { // expected-warning {{
stdcall
calling convention ignored on variadic function}}
32
void (__attribute__((
stdcall
)) *pbar)(float*) = bar;
59
typedef __attribute__((
stdcall
)) void (*PROC)();
66
void __attribute__((
stdcall
)) typedef_fun(int x) { } // expected-error {{function declared '
stdcall
' here was previously declared without calling convention}}
68
struct type_test {} __attribute__((
stdcall
)); // expected-warning {{'
stdcall
' attribute only applies to functions and methods}}
callingconv-iamcu.c
6
void __attribute__((
stdcall
)) bar(float *a) { // expected-warning {{calling convention '
stdcall
' ignored for this target}}
14
void __attribute__((
stdcall
)) test3(int a, ...) { // expected-warning {{calling convention '
stdcall
' ignored for this target}}
25
void (__attribute__((
stdcall
)) *pbar)(float*) = bar; // expected-warning {{calling convention '
stdcall
' ignored for this target}}
48
typedef __attribute__((
stdcall
)) void (*PROC)(); // expected-warning {{calling convention '
stdcall
' ignored for this target}}
53
struct type_test {} __attribute__((
stdcall
)); // expected-warning {{calling convention '
stdcall
' ignored for this target}} expected-warning {{'stdcall' attribute only applies to functions and me (…)
[
all
...]
attr-args.c
11
inline __attribute__((
stdcall
(a))) void *f8(); // expected-error {{'
stdcall
' attribute takes no arguments}}
callingconv-cast.c
6
// expected-note@+1 {{consider defining 'mismatched_before_winapi' with the '
stdcall
' calling convention}}
12
#define WINAPI __attribute__((
stdcall
))
15
// expected-note@+1 3 {{consider defining 'mismatched' with the '
stdcall
' calling convention}}
26
// expected-warning@+1 {{cast between incompatible calling conventions 'cdecl' and '
stdcall
'}}
29
// expected-warning@+1 {{cast between incompatible calling conventions 'cdecl' and '
stdcall
'}}
33
// expected-warning@+1 {{cast between incompatible calling conventions 'cdecl' and '
stdcall
'}}
39
// expected-warning@+1 {{cast between incompatible calling conventions 'cdecl' and '
stdcall
'}}
49
// Don't warn, because we're casting from
stdcall
to cdecl. Usually that means
63
// GNUFIXIT: fix-it:"{{.*}}callingconv-cast.c":{7:6-7:6}:"__attribute__((
stdcall
)) "
/external/clang/test/CodeGenCXX/
default_calling_conv.cpp
3
// RUN: %clang_cc1 -triple i486-unknown-linux-gnu -fdefault-calling-conv=
stdcall
-emit-llvm -o - %s | FileCheck %s --check-prefix=
STDCALL
--check-prefix=ALL
4
// RUN: %clang_cc1 -triple i486-unknown-linux-gnu -mrtd -emit-llvm -o - %s | FileCheck %s --check-prefix=
STDCALL
--check-prefix=ALL
9
//
STDCALL
: define x86_stdcallcc void @_Z5test1v
20
void __attribute__((
stdcall
)) test4() {}
ctor-dtor-alias.cpp
161
__attribute__((
stdcall
)) ~foo() {
/external/clang/test/Parser/
arm-windows-calling-convention-handling.c
7
float __stdcall
stdcall
(float a, float b, float c, float d) { // expected-no-diagnostics
function
x64-windows-calling-convention-handling.c
7
float __stdcall
stdcall
(float a, float b, float c, float d) { // expected-no-diagnostics
function
/external/clang/test/SemaCXX/
virtual-override-x64.cpp
29
virtual void __attribute__((
stdcall
)) g(); // expected-warning {{calling convention '
stdcall
' ignored for this target}}
virtual-override-x86.cpp
26
virtual void __attribute__((
stdcall
)) g(); // expected-note{{overridden virtual function is here}}
31
void g(); // expected-error{{virtual function 'g' has different calling convention attributes ('void () __attribute__((thiscall))') than the function it overrides (which has calling convention 'void () __attribute__((
stdcall
))'}}
cxx11-gnu-attrs.cpp
13
[[gnu::fastcall]] [[gnu::
stdcall
]] void pr17424_2();
15
// expected-warning@-2 {{calling convention '
stdcall
' ignored for this target}}
19
[[gnu::fastcall]] void pr17424_4() [[gnu::
stdcall
]];
21
// expected-warning@-2 {{attribute '
stdcall
' ignored, because it cannot be applied to a type}}
22
// expected-warning@-3 {{calling convention '
stdcall
' ignored for this target}}
/external/jline/src/src/main/native/
Makefile
7
#gcc -I'C:/Program Files/Java/'*'/include/' -I'C:/Program Files/Java/'*'/include//win32/' -mno-cygwin -Wl,--add-
stdcall
-alias -shared -o jline.dll jline_WindowsTerminal.c
8
gcc -L /usr/lib/mingw/ -I${JDK}/include -I${JDK}/include/win32 -mwindows -mno-cygwin -Wl,--add-
stdcall
-alias -shared -o jline.dll jline_WindowsTerminal.c
/external/elfutils/lib/
eu-config.h
63
# define internal_function __attribute__ ((regparm (3),
stdcall
))
140
# define CALLING_CONVENTION regparm (3),
stdcall
141
# define AND_CALLING_CONVENTION , regparm (3),
stdcall
/external/clang/test/SemaTemplate/
instantiate-function-params.cpp
87
typedef int stdfunctype(int, int) __attribute__((
stdcall
));
88
__attribute__((
stdcall
)) functype stdfunc1;
/external/libffi/testsuite/libffi.call/
ffitest.h
24
#define __STDCALL__ __attribute__((
stdcall
))
/external/python/cpython2/Modules/_ctypes/libffi/testsuite/libffi.call/
ffitest.h
24
#define __STDCALL__ __attribute__((
stdcall
))
/external/python/cpython3/Modules/_ctypes/libffi/testsuite/libffi.call/
ffitest.h
24
#define __STDCALL__ __attribute__((
stdcall
))
Completed in 552 milliseconds
1
2