Home
last modified time | relevance | path

Searched refs:CallingConvention (Results 1 – 25 of 57) sorted by relevance

123

/external/zlib/src/contrib/dotzlib/DotZLib/
DGZipStream.cs20 [DllImport("ZLIB1.dll", CallingConvention=CallingConvention.Cdecl, CharSet=CharSet.Ansi)]
23 [DllImport("ZLIB1.dll", CallingConvention=CallingConvention.Cdecl)]
26 [DllImport("ZLIB1.dll", CallingConvention=CallingConvention.Cdecl)]
29 [DllImport("ZLIB1.dll", CallingConvention=CallingConvention.Cdecl)]
32 [DllImport("ZLIB1.dll", CallingConvention=CallingConvention.Cdecl)]
35 [DllImport("ZLIB1.dll", CallingConvention=CallingConvention.Cdecl)]
DInflater.cs21 [DllImport("ZLIB1.dll", CallingConvention=CallingConvention.Cdecl, CharSet=CharSet.Ansi)]
24 [DllImport("ZLIB1.dll", CallingConvention=CallingConvention.Cdecl)]
27 [DllImport("ZLIB1.dll", CallingConvention=CallingConvention.Cdecl)]
30 [DllImport("ZLIB1.dll", CallingConvention=CallingConvention.Cdecl)]
DDeflater.cs21 [DllImport("ZLIB1.dll", CallingConvention=CallingConvention.Cdecl, CharSet=CharSet.Ansi)]
24 [DllImport("ZLIB1.dll", CallingConvention=CallingConvention.Cdecl)]
27 [DllImport("ZLIB1.dll", CallingConvention=CallingConvention.Cdecl)]
30 [DllImport("ZLIB1.dll", CallingConvention=CallingConvention.Cdecl)]
DChecksumImpl.cs108 [DllImport("ZLIB1.dll", CallingConvention=CallingConvention.Cdecl)]
159 [DllImport("ZLIB1.dll", CallingConvention=CallingConvention.Cdecl)]
DDotZLib.cs219 [DllImport("ZLIB1.dll", CallingConvention=CallingConvention.Cdecl)]
222 [DllImport("ZLIB1.dll", CallingConvention=CallingConvention.Cdecl)]
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/
DMinimalTypeDumper.cpp76 static std::string formatCallingConvention(CallingConvention Convention) { in formatCallingConvention()
78 RETURN_CASE(CallingConvention, AlphaCall, "alphacall"); in formatCallingConvention()
79 RETURN_CASE(CallingConvention, AM33Call, "am33call"); in formatCallingConvention()
80 RETURN_CASE(CallingConvention, ArmCall, "armcall"); in formatCallingConvention()
81 RETURN_CASE(CallingConvention, ClrCall, "clrcall"); in formatCallingConvention()
82 RETURN_CASE(CallingConvention, FarC, "far cdecl"); in formatCallingConvention()
83 RETURN_CASE(CallingConvention, FarFast, "far fastcall"); in formatCallingConvention()
84 RETURN_CASE(CallingConvention, FarPascal, "far pascal"); in formatCallingConvention()
85 RETURN_CASE(CallingConvention, FarStdCall, "far stdcall"); in formatCallingConvention()
86 RETURN_CASE(CallingConvention, FarSysCall, "far syscall"); in formatCallingConvention()
[all …]
DPrettyFunctionDumper.cpp65 if ((ClassParent && CC == CallingConvention::ThisCall) || in start()
66 (!ClassParent && CC == CallingConvention::NearStdCall)) { in start()
163 CallingConvention CC = Signature->getCallingConvention(); in start()
167 if ((ClassParent && CC != CallingConvention::ThisCall) || in start()
168 (!ClassParent && CC != CallingConvention::NearStdCall)) { in start()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/CodeView/
DTypeDumpVisitor.cpp112 ENUM_ENTRY(CallingConvention, NearC),
113 ENUM_ENTRY(CallingConvention, FarC),
114 ENUM_ENTRY(CallingConvention, NearPascal),
115 ENUM_ENTRY(CallingConvention, FarPascal),
116 ENUM_ENTRY(CallingConvention, NearFast),
117 ENUM_ENTRY(CallingConvention, FarFast),
118 ENUM_ENTRY(CallingConvention, NearStdCall),
119 ENUM_ENTRY(CallingConvention, FarStdCall),
120 ENUM_ENTRY(CallingConvention, NearSysCall),
121 ENUM_ENTRY(CallingConvention, FarSysCall),
[all …]
/external/llvm/lib/DebugInfo/CodeView/
DTypeDumper.cpp158 ENUM_ENTRY(CallingConvention, NearC),
159 ENUM_ENTRY(CallingConvention, FarC),
160 ENUM_ENTRY(CallingConvention, NearPascal),
161 ENUM_ENTRY(CallingConvention, FarPascal),
162 ENUM_ENTRY(CallingConvention, NearFast),
163 ENUM_ENTRY(CallingConvention, FarFast),
164 ENUM_ENTRY(CallingConvention, NearStdCall),
165 ENUM_ENTRY(CallingConvention, FarStdCall),
166 ENUM_ENTRY(CallingConvention, NearSysCall),
167 ENUM_ENTRY(CallingConvention, FarSysCall),
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ObjectYAML/
DCodeViewYAMLTypes.cpp57 LLVM_YAML_DECLARE_ENUM_TRAITS(CallingConvention)
232 void ScalarEnumerationTraits<CallingConvention>::enumeration( in enumeration()
233 IO &IO, CallingConvention &Value) { in enumeration()
234 IO.enumCase(Value, "NearC", CallingConvention::NearC); in enumeration()
235 IO.enumCase(Value, "FarC", CallingConvention::FarC); in enumeration()
236 IO.enumCase(Value, "NearPascal", CallingConvention::NearPascal); in enumeration()
237 IO.enumCase(Value, "FarPascal", CallingConvention::FarPascal); in enumeration()
238 IO.enumCase(Value, "NearFast", CallingConvention::NearFast); in enumeration()
239 IO.enumCase(Value, "FarFast", CallingConvention::FarFast); in enumeration()
240 IO.enumCase(Value, "NearStdCall", CallingConvention::NearStdCall); in enumeration()
[all …]
/external/llvm/tools/llvm-pdbdump/
DFunctionDumper.cpp65 if ((ClassParent && CC == CallingConvention::ThisCall) || in start()
66 (!ClassParent && CC == CallingConvention::NearStdCall)) { in start()
158 CallingConvention CC = Signature->getCallingConvention(); in start()
162 if ((ClassParent && CC != CallingConvention::ThisCall) || in start()
163 (!ClassParent && CC != CallingConvention::NearStdCall)) { in start()
/external/llvm/test/DebugInfo/COFF/
Dtypes-calling-conv.ll53 ; CHECK: CallingConvention: ThisCall (0xB)
99 ; CHECK: CallingConvention: NearC (0x0)
114 ; CHECK: CallingConvention: NearFast (0x4)
129 ; CHECK: CallingConvention: NearStdCall (0x7)
144 ; CHECK: CallingConvention: NearVector (0x18)
Dtypes-non-virtual-methods.ll40 ; CHECK: CallingConvention: NearC (0x0)
80 ; CHECK: CallingConvention: ThisCall (0xB)
161 ; CHECK: CallingConvention: ThisCall (0xB)
180 ; CHECK: CallingConvention: ThisCall (0xB)
199 ; CHECK: CallingConvention: ThisCall (0xB)
/external/swiftshader/third_party/llvm-7.0/llvm/test/DebugInfo/COFF/
Dtypes-calling-conv.ll53 ; CHECK: CallingConvention: ThisCall (0xB)
99 ; CHECK: CallingConvention: NearC (0x0)
114 ; CHECK: CallingConvention: NearFast (0x4)
129 ; CHECK: CallingConvention: NearStdCall (0x7)
144 ; CHECK: CallingConvention: NearVector (0x18)
Dtypes-non-virtual-methods.ll40 ; CHECK: CallingConvention: NearC (0x0)
80 ; CHECK: CallingConvention: ThisCall (0xB)
161 ; CHECK: CallingConvention: ThisCall (0xB)
180 ; CHECK: CallingConvention: ThisCall (0xB)
199 ; CHECK: CallingConvention: ThisCall (0xB)
Dstatic-methods.ll20 ; CHECK-NEXT: CallingConvention: NearC (0x0)
32 ; CHECK-NEXT: CallingConvention: ThisCall (0xB)
44 ; CHECK-NEXT: CallingConvention: NearC (0x0)
Dtype-quals.ll75 ; CHECK: CallingConvention: NearC (0x0)
206 ; CHECK: CallingConvention: NearC (0x0)
227 ; CHECK: CallingConvention: NearC (0x0)
277 ; CHECK: CallingConvention: NearC (0x0)
/external/llvm/include/llvm/DebugInfo/CodeView/
DTypeRecord.h144 ProcedureRecord(TypeIndex ReturnType, CallingConvention CallConv, in ProcedureRecord()
161 CallingConvention getCallConv() const { return CallConv; } in getCallConv()
169 CallingConvention CallConv;
176 CallingConvention CallConv;
186 TypeIndex ThisType, CallingConvention CallConv, in MemberFunctionRecord()
205 CallingConvention getCallConv() const { return CallConv; } in getCallConv()
216 CallingConvention CallConv;
226 CallingConvention CallConv;
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-readobj/
Dcodeview-merging.test27 OBJ1-NEXT: CallingConvention: NearC (0x0)
66 CHECK-NEXT: CallingConvention: NearC (0x0)
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/CodeView/
DTypeRecord.h151 ProcedureRecord(TypeIndex ReturnType, CallingConvention CallConv, in ProcedureRecord()
159 CallingConvention getCallConv() const { return CallConv; } in getCallConv()
165 CallingConvention CallConv;
178 TypeIndex ThisType, CallingConvention CallConv, in MemberFunctionRecord()
190 CallingConvention getCallConv() const { return CallConv; } in getCallConv()
199 CallingConvention CallConv;
/external/llvm/lib/CodeGen/AsmPrinter/
DCodeViewDebug.cpp1232 static CallingConvention dwarfCCToCodeView(unsigned DwarfCC) { in dwarfCCToCodeView()
1234 case dwarf::DW_CC_normal: return CallingConvention::NearC; in dwarfCCToCodeView()
1235 case dwarf::DW_CC_BORLAND_msfastcall: return CallingConvention::NearFast; in dwarfCCToCodeView()
1236 case dwarf::DW_CC_BORLAND_thiscall: return CallingConvention::ThisCall; in dwarfCCToCodeView()
1237 case dwarf::DW_CC_BORLAND_stdcall: return CallingConvention::NearStdCall; in dwarfCCToCodeView()
1238 case dwarf::DW_CC_BORLAND_pascal: return CallingConvention::NearPascal; in dwarfCCToCodeView()
1239 case dwarf::DW_CC_LLVM_vectorcall: return CallingConvention::NearVector; in dwarfCCToCodeView()
1241 return CallingConvention::NearC; in dwarfCCToCodeView()
1293 CallingConvention CC = dwarfCCToCodeView(Ty->getCC()); in lowerTypeFunction()
1326 CallingConvention CC = dwarfCCToCodeView(Ty->getCC()); in lowerTypeMemberFunction()
/external/swiftshader/third_party/LLVM/
DFastIntrinsicID.patch7 /*CallingConv::ID CallingConvention;*/
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/
DCodeViewDebug.cpp1613 static CallingConvention dwarfCCToCodeView(unsigned DwarfCC) { in dwarfCCToCodeView()
1615 case dwarf::DW_CC_normal: return CallingConvention::NearC; in dwarfCCToCodeView()
1616 case dwarf::DW_CC_BORLAND_msfastcall: return CallingConvention::NearFast; in dwarfCCToCodeView()
1617 case dwarf::DW_CC_BORLAND_thiscall: return CallingConvention::ThisCall; in dwarfCCToCodeView()
1618 case dwarf::DW_CC_BORLAND_stdcall: return CallingConvention::NearStdCall; in dwarfCCToCodeView()
1619 case dwarf::DW_CC_BORLAND_pascal: return CallingConvention::NearPascal; in dwarfCCToCodeView()
1620 case dwarf::DW_CC_LLVM_vectorcall: return CallingConvention::NearVector; in dwarfCCToCodeView()
1622 return CallingConvention::NearC; in dwarfCCToCodeView()
1703 CallingConvention CC = dwarfCCToCodeView(Ty->getCC()); in lowerTypeFunction()
1742 CallingConvention CC = dwarfCCToCodeView(Ty->getCC()); in lowerTypeMemberFunction()
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/DebugInfo/CodeView/
DTypeHashingTest.cpp40 PR.CallConv = CallingConvention::NearC; in createProcedureRecord()
/external/clang/include/clang/CodeGen/
DCGFunctionInfo.h457 unsigned CallingConvention : 8; variable
571 unsigned getCallingConvention() const { return CallingConvention; } in getCallingConvention()

123