/external/zlib/src/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/clang/lib/CodeGen/ |
D | ABIInfo.h | 106 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);
|
D | TargetInfo.cpp | 546 ABIArgInfo getIndirectResult(QualType Ty, bool ByVal, 794 ABIArgInfo X86_32ABIInfo::getIndirectResult(QualType Ty, bool ByVal, in getIndirectResult() argument 796 if (!ByVal) { in getIndirectResult()
|
D | CGCall.cpp | 1180 Attrs.addAttribute(llvm::Attribute::ByVal); in ConstructAttributeList()
|
/external/llvm/include/llvm/Target/ |
D | TargetCallingConv.h | 35 static const uint64_t ByVal = 1ULL<<4; ///< Struct passed by value member 68 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/llvm/lib/Target/Mips/ |
D | MipsISelLowering.h | 306 void allocateRegs(ByValArgInfo &ByVal, unsigned ByValSize, 384 const MipsCC &CC, const ByValArgInfo &ByVal) const; 391 const MipsCC &CC, const ByValArgInfo &ByVal,
|
D | MipsISelLowering.cpp | 3259 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/ |
D | CallSite.h | 257 return paramHasAttr(ArgNo + 1, Attribute::ByVal); in isByValArgument()
|
/external/llvm/lib/IR/ |
D | Verifier.cpp | 785 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()
|
D | Attributes.cpp | 167 if (hasAttribute(Attribute::ByVal)) in getAsString() 355 case Attribute::ByVal: return 1 << 7; in getAttrMask() 1164 Incompatible.addAttribute(Attribute::ByVal) in typeIncompatible()
|
D | Function.cpp | 84 hasAttribute(getArgNo()+1, Attribute::ByVal); in hasByValAttr()
|
/external/llvm/include/llvm/IR/ |
D | Attributes.h | 72 ByVal, ///< Pass structure by value enumerator
|
D | Instructions.h | 1359 return AttributeList.hasAttrSomewhere(Attribute::ByVal); 3104 return AttributeList.hasAttrSomewhere(Attribute::ByVal);
|
/external/llvm/lib/Target/AArch64/ |
D | AArch64CallingConv.td | 55 // Put ByVal arguments directly on the stack. Minimum size and alignment of a
|
/external/llvm/lib/Target/X86/ |
D | X86FastISel.cpp | 1746 if (F->getAttributes().hasAttribute(Idx, Attribute::ByVal) || in FastLowerArguments() 1909 if (CS.paramHasAttr(AttrInd, Attribute::ByVal)) { in DoSelectCall()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCalls.cpp | 1061 Attribute::ByVal)) { in transformConstExprCastCall()
|
/external/llvm/lib/Target/ARM/ |
D | ARMFastISel.cpp | 2365 CS.paramHasAttr(AttrInd, Attribute::ByVal)) in SelectCall() 3028 F->getAttributes().hasAttribute(Idx, Attribute::ByVal)) in FastLowerArguments()
|
/external/llvm/lib/Target/NVPTX/ |
D | NVPTXAsmPrinter.cpp | 1500 if (PAL.hasAttribute(paramIndex + 1, Attribute::ByVal) == false) { in emitFunctionParamList()
|
D | NVPTXISelLowering.cpp | 1450 if (PAL.hasAttribute(i + 1, Attribute::ByVal) == false) { in LowerFormalArguments()
|
/external/llvm/lib/Transforms/Instrumentation/ |
D | MemorySanitizer.cpp | 1626 if (CS.paramHasAttr(i + 1, Attribute::ByVal)) { in visitCallSite()
|
/external/llvm/lib/Target/CppBackend/ |
D | CPPBackend.cpp | 494 HANDLE_ATTR(ByVal); in printAttributes()
|
/external/llvm/lib/Bitcode/Writer/ |
D | BitcodeWriter.cpp | 172 case Attribute::ByVal: in getAttrKindEncoding()
|
/external/llvm/lib/Bitcode/Reader/ |
D | BitcodeReader.cpp | 523 *Kind = Attribute::ByVal; in ParseAttrKind()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGBuilder.cpp | 5283 Entry.isByVal = CS.paramHasAttr(attrInd, Attribute::ByVal); in LowerCallTo() 6696 if (F.getAttributes().hasAttribute(Idx, Attribute::ByVal)) { in LowerArguments()
|