Home
last modified time | relevance | path

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

12

/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/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/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)
Dvirtual-methods.ll29 ; CHECK-NEXT: CallingConvention: NearC (0x0)
43 ; CHECK-NEXT: CallingConvention: NearC (0x0)
57 ; CHECK-NEXT: CallingConvention: NearC (0x0)
80 ; CHECK-NEXT: CallingConvention: NearC (0x0)
Dtypes-data-members.ll51 ; CHECK: CallingConvention: NearC (0x0)
262 ; CHECK: CallingConvention: NearC (0x0)
399 ; CHECK: CallingConvention: NearC (0x0)
Dtypes-basic.ll50 ; CHECK: CallingConvention: NearC (0x0)
127 ; CHECK: CallingConvention: NearC (0x0)
204 ; CHECK: CallingConvention: NearC (0x0)
Dtypes-array.ll24 ; CHECK: CallingConvention: NearC (0x0)
Dtypes-recursive-struct.ll33 ; CHECK: CallingConvention: NearC (0x0)
Ddefer-complete-type.ll52 ; CHECK: CallingConvention: NearC (0x0)
Dtypes-array-advanced.ll34 ; 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;
DCodeView.h164 enum class CallingConvention : uint8_t { enum
/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/clang/include/clang/CodeGen/
DCGFunctionInfo.h457 unsigned CallingConvention : 8; variable
571 unsigned getCallingConvention() const { return CallingConvention; } in getCallingConvention()
/external/llvm/include/llvm/DebugInfo/PDB/
DPDBTypes.h145 typedef codeview::CallingConvention PDB_CallingConv;
/external/llvm/include/llvm/Support/
DDwarf.h390 enum CallingConvention { enum
/external/llvm/unittests/Transforms/Utils/
DCloning.cpp181 TEST_F(CloneInstruction, CallingConvention) { in TEST_F() argument
/external/llvm/lib/Target/X86/
DX86FrameLowering.cpp2057 CallingConv::ID CallingConvention = MF.getFunction()->getCallingConv(); in GetScratchRegister() local
2060 if (CallingConvention == CallingConv::HiPE) { in GetScratchRegister()
2076 if (CallingConvention == CallingConv::X86_FastCall || in GetScratchRegister()
2077 CallingConvention == CallingConv::Fast) { in GetScratchRegister()

12