OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:convention
(Results
1 - 25
of
1726
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/clang/test/Sema/
stdcall-fastcall-x64.c
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}}
10
void __attribute__((fastcall)) foo4(void); // expected-warning {{calling
convention
'fastcall' ignored for this target}}
13
void rdar8876096foo1(int i, int j) __attribute__((fastcall, cdecl)); // expected-warning{{calling
convention
'fastcall' 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}}
15
void rdar8876096foo3(int i, int j) __attribute__((fastcall, regparm(2))); // 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}}
17
void rdar8876096foo5(int i, int j) __attribute__((stdcall, fastcall)); // expected-warning{{calling
convention
'stdcall' ignored for this target}} expected-warning {{calling convention 'fastcall' ignored for t (…)
[
all
...]
callingconv.c
13
void __attribute__((fastcall)) test0() { // expected-error {{function with no prototype cannot use fastcall calling
convention
}}
19
void __attribute__((fastcall)) test2(int a, ...) { // expected-warning {{fastcall calling
convention
ignored on variadic function}}
21
void __attribute__((stdcall)) test3(int a, ...) { // expected-warning {{stdcall calling
convention
ignored on variadic function}}
23
void __attribute__((thiscall)) test4(int a, ...) { // expected-error {{variadic function cannot use thiscall calling
convention
}}
50
int __attribute__((pcs("aapcs"))) pcs5(void); // expected-warning {{calling
convention
'pcs' ignored for this target}}
51
int __attribute__((pcs("aapcs-vfp"))) pcs6(void); // expected-warning {{calling
convention
'pcs' ignored for this target}}
62
void __attribute__((pnaclcall)) pnaclfunc(float *a) {} // expected-warning {{calling
convention
'pnaclcall' ignored for this target}}
68
void __attribute__((stdcall)) typedef_fun(int x) { } // expected-error {{function declared 'stdcall' here was previously declared without calling
convention
}}
MicrosoftCompatibility-x64.c
2
int __stdcall f(void); /* expected-warning {{calling
convention
'__stdcall' ignored for this target}} */
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
}}
15
// expected-warning@+2 {{stdcall calling
convention
ignored on variadic function}}
36
// expected-warning@+2 {{stdcall calling
convention
ignored on variadic function}}
/external/clang/test/Parser/
arm-windows-calling-convention-handling.c
3
int __cdecl cdecl(int a, int b, int c, int d) { // expected-warning {{calling
convention
'__cdecl' ignored for this target}}
7
float __stdcall stdcall(float a, float b, float c, float d) { // expected-warning {{calling
convention
'__stdcall' ignored for this target}}
/external/clang/test/SemaCXX/
borland-extensions.cpp
10
// expected-warning@+1 {{calling
convention
'_pascal' ignored for this target}}
13
// expected-warning@+1 {{calling
convention
'__pascal' ignored for this target}}
15
// expected-warning@+1 {{calling
convention
'__pascal' ignored for this target}}
19
// expected-warning@+1 {{calling
convention
'__pascal' ignored for this target}}
21
// expected-warning@+1 {{calling
convention
'__pascal' ignored for this target}}
24
// expected-warning@+1 {{calling
convention
'__pascal' ignored for this target}}
37
// expected-warning@+1 {{calling
convention
'_fastcall' ignored for this target}}
39
// expected-warning@+1 {{calling
convention
'_stdcall' ignored for this target}}
virtual-override-x86.cpp
11
void __attribute__((cdecl)) f(); // expected-error{{virtual function 'f' has different calling
convention
attributes ('void () __attribute__((cdecl))') than the function it overrides (which has calling
convention
'void () __attribute__((thiscall))'}}
21
void f(); // This override is correct because thiscall is the default calling
convention
for class members
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))'}}
virtual-override-x64.cpp
9
virtual void __attribute__((thiscall)) f(); // expected-warning {{calling
convention
'thiscall' ignored for this target}}
19
void __attribute__((thiscall)) f(); // expected-warning {{calling
convention
'thiscall' ignored for this target}}
29
virtual void __attribute__((stdcall)) g(); // expected-warning {{calling
convention
'stdcall' ignored for this target}}
decl-microsoft-call-conv.cpp
15
void __stdcall free_func_default(); // expected-error {{function declared 'stdcall' here was previously declared without calling
convention
}}
16
void __fastcall free_func_default(); // expected-error {{function declared 'fastcall' here was previously declared without calling
convention
}}
49
// Typedefs carrying the __cdecl
convention
are adjusted to __thiscall.
72
void __cdecl S::member_default1() {} // expected-error {{function declared 'cdecl' here was previously declared without calling
convention
}}
75
void __cdecl S::member_typedef_default() {} // expected-error {{function declared 'cdecl' here was previously declared without calling
convention
}}
76
void __cdecl S::member_typedef_cdecl1() {} // expected-error {{function declared 'cdecl' here was previously declared without calling
convention
}}
88
void __stdcall S::static_member_default3() {} // expected-error {{function declared 'stdcall' here was previously declared without calling
convention
}}
99
// Declare a template using a calling
convention
.
138
void __stdcall friend_stdcall3() {} // expected-error {{function declared 'stdcall' here was previously declared without calling
convention
}}
229
template<> void __cdecl S<void*>::f(void*); // expected-error {{function declared 'cdecl' here was previously declared without calling
convention
}}
[
all
...]
/external/llvm/include/llvm/IR/
CallingConv.h
25
/// @brief LLVM Calling
Convention
Representation
27
/// C - The default llvm calling
convention
, compatible with C. This
28
///
convention
is the only calling
convention
that supports varargs calls.
37
/// Fast - This calling
convention
attempts to make calls as fast as
41
// Cold - This calling
convention
attempts to make code in the caller as
47
// GHC - Calling
convention
used by the Glasgow Haskell Compiler (GHC).
50
// HiPE - Calling
convention
used by the High-Performance Erlang Compiler
54
// WebKit JS - Calling
convention
for stack based JavaScript calls
57
// AnyReg - Calling
convention
for dynamic register based calls (e.g
[
all
...]
/external/clang/test/CodeGenCXX/
microsoft-abi-methods.cpp
20
// Make sure that the call uses the right calling
convention
:
24
// Make sure that the definition uses the right calling
convention
:
32
// Make sure that the call uses the right calling
convention
:
36
// Make sure that the definition uses the right calling
convention
:
44
// Make sure that the call uses the right calling
convention
:
48
// Make sure that the definition uses the right calling
convention
:
54
// Make sure that the call uses the right calling
convention
:
58
// Make sure that the definition uses the right calling
convention
:
73
// the right calling
convention
:
79
// the right calling
convention
[
all
...]
/art/compiler/jni/quick/arm64/
calling_convention_arm64.h
32
// Calling
convention
35
// Managed runtime calling
convention
53
// Calling
convention
57
// JNI calling
convention
71
// aarch64 calling
convention
leaves upper bits undefined.
/external/llvm/test/CodeGen/X86/
2009-06-12-x86_64-tail-call-conv-out-of-sync-bug.ll
5
; calling
convention
out of sync with standard c calling
convention
on x86_64)
/art/compiler/jni/quick/arm/
calling_convention_arm.h
32
// Calling
convention
35
// Managed runtime calling
convention
53
// Calling
convention
57
// JNI calling
convention
/art/compiler/jni/quick/x86/
calling_convention_x86.h
33
// Calling
convention
36
// Managed runtime calling
convention
52
// Calling
convention
56
// JNI calling
convention
/art/compiler/jni/quick/x86_64/
calling_convention_x86_64.h
33
// Calling
convention
36
// Managed runtime calling
convention
52
// Calling
convention
56
// JNI calling
convention
/external/llvm/lib/Target/X86/
X86CallingConv.h
1
//=== X86CallingConv.h - X86 Custom Calling
Convention
Routines -*- C++ -*-===//
10
// This file contains the custom routines for the X86 Calling
Convention
that
26
llvm_unreachable("The AnyReg calling
convention
is only supported by the " \
28
// gracefully fallback to X86 C calling
convention
on Release builds.
/external/iproute2/man/man8/
ip-netns.8
30
By
convention
a named network namespace is an object at
40
The
convention
for network namespace aware applications is to look
51
automates handling of this configuration, file
convention
for network
/external/expat/lib/
expat_external.h
20
XMLCALL - The calling
convention
to use for all calls across the
33
compiled with the cdecl calling
convention
as the default since
34
system headers may assume the cdecl
convention
.
43
one calling
convention
, we need to extend this definition to
44
declare the
convention
used on that platform, if it's possible to
49
pre-processor and how to specify the same calling
convention
as the
/art/compiler/jni/quick/mips/
calling_convention_mips.h
32
// Calling
convention
35
// Managed runtime calling
convention
53
// Calling
convention
57
// JNI calling
convention
/build/tools/
fixlinebreaks.sh
3
# Convert EOL
convention
on source files from CRLF to LF.
/external/clang/test/CodeGen/
nvptx-cc.c
4
// Just make sure Clang uses the proper calling
convention
for the NVPTX back-end.
/external/llvm/test/Transforms/InstCombine/
PR7357.ll
5
;
convention
with a new call with a different calling
convention
.
/external/guava/guava/src/com/google/common/base/
CaseFormat.java
30
* Hyphenated variable naming
convention
, e.g., "lower-hyphen".
35
* C++ variable naming
convention
, e.g., "lower_underscore".
40
* Java variable naming
convention
, e.g., "lowerCamel".
45
* Java and C++ class naming
convention
, e.g., "UpperCamel".
50
* Java and C++ constant naming
convention
, e.g., "UPPER_UNDERSCORE".
/build/core/
build_id.mk
19
# capitalized by
convention
.
Completed in 679 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>