Home
last modified time | relevance | path

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

/external/zlib/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/llvm/include/llvm/
DAttributes.h44 const Attributes ByVal = 1<<7; ///< Pass structure by value variable
89 const Attributes ParameterOnly = ByVal | Nest | StructRet | NoCapture;
103 ByVal | InReg | Nest | StructRet,
DInstructions.h1009 return AttributeList.hasAttrSomewhere(Attribute::ByVal);
2362 return AttributeList.hasAttrSomewhere(Attribute::ByVal);
/external/llvm/include/llvm/Target/
DTargetCallingConv.h31 static const uint64_t ByVal = 1ULL<<4; ///< Struct passed by value member
62 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/clang/lib/CodeGen/
DABIInfo.h92 static ABIArgInfo getIndirect(unsigned Alignment, bool ByVal = true
94 return ABIArgInfo(Indirect, 0, Alignment, ByVal, Realign);
DTargetInfo.cpp387 ABIArgInfo getIndirectResult(QualType Ty, bool ByVal = true) const;
645 ABIArgInfo X86_32ABIInfo::getIndirectResult(QualType Ty, bool ByVal) const { in getIndirectResult()
646 if (!ByVal) in getIndirectResult()
DCGCall.cpp813 Attributes |= llvm::Attribute::ByVal; in ConstructAttributeList()
/external/llvm/lib/VMCore/
DAttributes.cpp49 if (Attrs & Attribute::ByVal) in getAsString()
104 Incompatible |= ByVal | Nest | NoAlias | StructRet | NoCapture; in typeIncompatible()
DFunction.cpp79 return getParent()->paramHasAttr(getArgNo()+1, Attribute::ByVal); in hasByValAttr()
DVerifier.cpp543 Attributes ByValI = Attrs & Attribute::ByVal; in VerifyParameterAttrs()
/external/llvm/lib/Target/CBackend/
DCBackend.cpp400 if (PAL.paramHasAttr(Idx, Attribute::ByVal)) { in printStructReturnPointerFunctionType()
492 if (PAL.paramHasAttr(Idx, Attribute::ByVal)) { in printType()
2165 if (PAL.paramHasAttr(Idx, Attribute::ByVal)) { in printFunctionSignature()
2192 if (PAL.paramHasAttr(Idx, Attribute::ByVal)) { in printFunctionSignature()
3005 if (I.paramHasAttr(ArgNo+1, Attribute::ByVal)) in visitCallInst()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineCalls.cpp764 if (!CS.paramHasAttr(ix, Attribute::ByVal)) in isSafeToEliminateVarargsCast()
996 if (ParamTy != ActTy && (Attrs & Attribute::ByVal)) { in transformConstExprCastCall()
/external/llvm/lib/Transforms/Scalar/
DMemCpyOptimizer.cpp948 if (CS.paramHasAttr(i+1, Attribute::ByVal)) in iterateOnFunction()
DScalarReplAggregates.cpp2615 if (CS.paramHasAttr(ArgNo+1, Attribute::ByVal)) in isOnlyCopiedFromConstantGlobal()
/external/llvm/lib/Transforms/IPO/
DArgumentPromotion.cpp156 bool isByVal = F->paramHasAttr(PointerArgs[i].second+1, Attribute::ByVal); in PromoteArguments()
/external/llvm/lib/Transforms/Utils/
DInlineFunction.cpp861 if (CalledFunc->paramHasAttr(ArgNo+1, Attribute::ByVal)) { in InlineFunction()
/external/llvm/lib/Analysis/
DBasicAliasAnalysis.cpp702 !CS.paramHasAttr(ArgNo+1, Attribute::ByVal))) in getModRefInfo()
/external/llvm/lib/Target/CppBackend/
DCPPBackend.cpp469 HANDLE_ATTR(ByVal); in printAttributes()
/external/llvm/lib/Target/X86/
DX86FastISel.cpp1549 if (CS.paramHasAttr(AttrInd, Attribute::ByVal)) { in DoSelectCall()
/external/llvm/lib/Target/ARM/
DARMFastISel.cpp1915 CS.paramHasAttr(AttrInd, Attribute::ByVal)) in SelectCall()
/external/llvm/lib/AsmParser/
DLLParser.cpp905 case lltok::kw_byval: Attrs |= Attribute::ByVal; break; in ParseOptionalAttrs()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp4985 Entry.isByVal = CS.paramHasAttr(attrInd, Attribute::ByVal); in LowerCallTo()
6372 if (F.paramHasAttr(Idx, Attribute::ByVal)) { in LowerArguments()