/external/zlib/old/ |
D | visual-basic.txt | 32 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/ |
D | Attributes.h | 44 const Attributes ByVal = 1<<7; ///< Pass structure by value variable 89 const Attributes ParameterOnly = ByVal | Nest | StructRet | NoCapture; 103 ByVal | InReg | Nest | StructRet,
|
D | Instructions.h | 1009 return AttributeList.hasAttrSomewhere(Attribute::ByVal); 2362 return AttributeList.hasAttrSomewhere(Attribute::ByVal);
|
/external/llvm/include/llvm/Target/ |
D | TargetCallingConv.h | 31 static const uint64_t ByVal = 1ULL<<4; ///< Struct passed by value member 62 bool isByVal() const { return Flags & ByVal; } in isByVal()
|
D | TargetCallingConv.td | 40 /// 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/ |
D | ABIInfo.h | 92 static ABIArgInfo getIndirect(unsigned Alignment, bool ByVal = true 94 return ABIArgInfo(Indirect, 0, Alignment, ByVal, Realign);
|
D | TargetInfo.cpp | 387 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()
|
D | CGCall.cpp | 813 Attributes |= llvm::Attribute::ByVal; in ConstructAttributeList()
|
/external/llvm/lib/VMCore/ |
D | Attributes.cpp | 49 if (Attrs & Attribute::ByVal) in getAsString() 104 Incompatible |= ByVal | Nest | NoAlias | StructRet | NoCapture; in typeIncompatible()
|
D | Function.cpp | 79 return getParent()->paramHasAttr(getArgNo()+1, Attribute::ByVal); in hasByValAttr()
|
D | Verifier.cpp | 543 Attributes ByValI = Attrs & Attribute::ByVal; in VerifyParameterAttrs()
|
/external/llvm/lib/Target/CBackend/ |
D | CBackend.cpp | 400 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/ |
D | InstCombineCalls.cpp | 764 if (!CS.paramHasAttr(ix, Attribute::ByVal)) in isSafeToEliminateVarargsCast() 996 if (ParamTy != ActTy && (Attrs & Attribute::ByVal)) { in transformConstExprCastCall()
|
/external/llvm/lib/Transforms/Scalar/ |
D | MemCpyOptimizer.cpp | 948 if (CS.paramHasAttr(i+1, Attribute::ByVal)) in iterateOnFunction()
|
D | ScalarReplAggregates.cpp | 2615 if (CS.paramHasAttr(ArgNo+1, Attribute::ByVal)) in isOnlyCopiedFromConstantGlobal()
|
/external/llvm/lib/Transforms/IPO/ |
D | ArgumentPromotion.cpp | 156 bool isByVal = F->paramHasAttr(PointerArgs[i].second+1, Attribute::ByVal); in PromoteArguments()
|
/external/llvm/lib/Transforms/Utils/ |
D | InlineFunction.cpp | 861 if (CalledFunc->paramHasAttr(ArgNo+1, Attribute::ByVal)) { in InlineFunction()
|
/external/llvm/lib/Analysis/ |
D | BasicAliasAnalysis.cpp | 702 !CS.paramHasAttr(ArgNo+1, Attribute::ByVal))) in getModRefInfo()
|
/external/llvm/lib/Target/CppBackend/ |
D | CPPBackend.cpp | 469 HANDLE_ATTR(ByVal); in printAttributes()
|
/external/llvm/lib/Target/X86/ |
D | X86FastISel.cpp | 1549 if (CS.paramHasAttr(AttrInd, Attribute::ByVal)) { in DoSelectCall()
|
/external/llvm/lib/Target/ARM/ |
D | ARMFastISel.cpp | 1915 CS.paramHasAttr(AttrInd, Attribute::ByVal)) in SelectCall()
|
/external/llvm/lib/AsmParser/ |
D | LLParser.cpp | 905 case lltok::kw_byval: Attrs |= Attribute::ByVal; break; in ParseOptionalAttrs()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGBuilder.cpp | 4985 Entry.isByVal = CS.paramHasAttr(attrInd, Attribute::ByVal); in LowerCallTo() 6372 if (F.paramHasAttr(Idx, Attribute::ByVal)) { in LowerArguments()
|