Home
last modified time | relevance | path

Searched refs:ByVal (Results 1 – 25 of 26) sorted by relevance

12

/external/zlib/src/old/
Dvisual-basic.txt32 Declare Function compress Lib "ZLIB.DLL" (ByVal compr As
33 String, comprLen As Any, ByVal buf As String, ByVal buflen
35 Declare Function uncompress Lib "ZLIB.DLL" (ByVal uncompr
36 As String, uncomprLen As Any, ByVal compr As String, ByVal
38 Declare Function gzopen Lib "ZLIB.DLL" (ByVal filePath As
39 String, ByVal mode As String) As Long
40 Declare Function gzread Lib "ZLIB.DLL" (ByVal file As
41 Long, ByVal uncompr As String, ByVal uncomprLen As Integer)
43 Declare Function gzwrite Lib "ZLIB.DLL" (ByVal file As
44 Long, ByVal uncompr As String, ByVal uncomprLen As Integer)
[all …]
/external/clang/lib/CodeGen/
DABIInfo.h106 static ABIArgInfo getIndirect(unsigned Alignment, bool ByVal = true
109 return ABIArgInfo(Indirect, 0, Alignment, ByVal, Realign, false, false,
112 static ABIArgInfo getIndirectInReg(unsigned Alignment, bool ByVal = true
114 return ABIArgInfo(Indirect, 0, Alignment, ByVal, Realign, true, false, 0);
DTargetInfo.cpp546 ABIArgInfo getIndirectResult(QualType Ty, bool ByVal,
794 ABIArgInfo X86_32ABIInfo::getIndirectResult(QualType Ty, bool ByVal, in getIndirectResult() argument
796 if (!ByVal) { in getIndirectResult()
DCGCall.cpp1180 Attrs.addAttribute(llvm::Attribute::ByVal); in ConstructAttributeList()
/external/llvm/include/llvm/Target/
DTargetCallingConv.h35 static const uint64_t ByVal = 1ULL<<4; ///< Struct passed by value member
68 bool isByVal() const { return Flags & ByVal; } in isByVal()
DTargetCallingConv.td40 /// CCIfByVal - If the current argument has ByVal parameter attribute, apply
100 /// slot to implement ByVal aggregate parameter passing. Size and alignment
/external/llvm/lib/Target/Mips/
DMipsISelLowering.h306 void allocateRegs(ByValArgInfo &ByVal, unsigned ByValSize,
384 const MipsCC &CC, const ByValArgInfo &ByVal) const;
391 const MipsCC &CC, const ByValArgInfo &ByVal,
DMipsISelLowering.cpp3259 struct ByValArgInfo ByVal; in handleByValArg() local
3266 allocateRegs(ByVal, ByValSize, Align); in handleByValArg()
3269 ByVal.Address = CCInfo.AllocateStack(ByValSize - RegSize * ByVal.NumRegs, in handleByValArg()
3271 CCInfo.addLoc(CCValAssign::getMem(ValNo, ValVT, ByVal.Address, LocVT, in handleByValArg()
3273 ByValArgs.push_back(ByVal); in handleByValArg()
3305 void MipsTargetLowering::MipsCC::allocateRegs(ByValArgInfo &ByVal, in allocateRegs() argument
3314 ByVal.FirstIdx = CCInfo.getFirstUnallocated(IntArgRegs, NumIntArgRegs); in allocateRegs()
3317 if ((Align > RegSize) && (ByVal.FirstIdx % 2)) { in allocateRegs()
3318 CCInfo.AllocateReg(IntArgRegs[ByVal.FirstIdx], ShadowRegs[ByVal.FirstIdx]); in allocateRegs()
3319 ++ByVal.FirstIdx; in allocateRegs()
[all …]
/external/llvm/include/llvm/Support/
DCallSite.h257 return paramHasAttr(ArgNo + 1, Attribute::ByVal); in isByValArgument()
/external/llvm/lib/IR/
DVerifier.cpp785 Assert1(!Attrs.hasAttribute(Idx, Attribute::ByVal) && in VerifyParameterAttrs()
794 Assert1(!((Attrs.hasAttribute(Idx, Attribute::ByVal) && in VerifyParameterAttrs()
796 (Attrs.hasAttribute(Idx, Attribute::ByVal) && in VerifyParameterAttrs()
802 Assert1(!((Attrs.hasAttribute(Idx, Attribute::ByVal) && in VerifyParameterAttrs()
804 (Attrs.hasAttribute(Idx, Attribute::ByVal) && in VerifyParameterAttrs()
832 Assert1(!Attrs.hasAttribute(Idx, Attribute::ByVal) || in VerifyParameterAttrs()
836 Assert1(!Attrs.hasAttribute(Idx, Attribute::ByVal), in VerifyParameterAttrs()
DAttributes.cpp167 if (hasAttribute(Attribute::ByVal)) in getAsString()
355 case Attribute::ByVal: return 1 << 7; in getAttrMask()
1164 Incompatible.addAttribute(Attribute::ByVal) in typeIncompatible()
DFunction.cpp84 hasAttribute(getArgNo()+1, Attribute::ByVal); in hasByValAttr()
/external/llvm/include/llvm/IR/
DAttributes.h72 ByVal, ///< Pass structure by value enumerator
DInstructions.h1359 return AttributeList.hasAttrSomewhere(Attribute::ByVal);
3104 return AttributeList.hasAttrSomewhere(Attribute::ByVal);
/external/llvm/lib/Target/AArch64/
DAArch64CallingConv.td55 // Put ByVal arguments directly on the stack. Minimum size and alignment of a
/external/llvm/lib/Target/X86/
DX86FastISel.cpp1746 if (F->getAttributes().hasAttribute(Idx, Attribute::ByVal) || in FastLowerArguments()
1909 if (CS.paramHasAttr(AttrInd, Attribute::ByVal)) { in DoSelectCall()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineCalls.cpp1061 Attribute::ByVal)) { in transformConstExprCastCall()
/external/llvm/lib/Target/ARM/
DARMFastISel.cpp2365 CS.paramHasAttr(AttrInd, Attribute::ByVal)) in SelectCall()
3028 F->getAttributes().hasAttribute(Idx, Attribute::ByVal)) in FastLowerArguments()
/external/llvm/lib/Target/NVPTX/
DNVPTXAsmPrinter.cpp1500 if (PAL.hasAttribute(paramIndex + 1, Attribute::ByVal) == false) { in emitFunctionParamList()
DNVPTXISelLowering.cpp1450 if (PAL.hasAttribute(i + 1, Attribute::ByVal) == false) { in LowerFormalArguments()
/external/llvm/lib/Transforms/Instrumentation/
DMemorySanitizer.cpp1626 if (CS.paramHasAttr(i + 1, Attribute::ByVal)) { in visitCallSite()
/external/llvm/lib/Target/CppBackend/
DCPPBackend.cpp494 HANDLE_ATTR(ByVal); in printAttributes()
/external/llvm/lib/Bitcode/Writer/
DBitcodeWriter.cpp172 case Attribute::ByVal: in getAttrKindEncoding()
/external/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp523 *Kind = Attribute::ByVal; in ParseAttrKind()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp5283 Entry.isByVal = CS.paramHasAttr(attrInd, Attribute::ByVal); in LowerCallTo()
6696 if (F.getAttributes().hasAttribute(Idx, Attribute::ByVal)) { in LowerArguments()

12