/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/include/clang/CodeGen/ |
D | CGFunctionInfo.h | 126 static ABIArgInfo getIndirect(unsigned Alignment, bool ByVal = true, 131 AI.setIndirectByVal(ByVal); 137 static ABIArgInfo getIndirectInReg(unsigned Alignment, bool ByVal = true, 139 auto AI = getIndirect(Alignment, ByVal, Realign);
|
/external/llvm/test/CodeGen/CPP/ |
D | attributes.ll | 4 ; CHECK: ByVal
|
/external/llvm/include/llvm/Target/ |
D | TargetCallingConv.h | 36 static const uint64_t ByVal = 1ULL<<4; ///< Struct passed by value member 75 bool isByVal() const { return Flags & ByVal; } in isByVal()
|
D | TargetCallingConv.td | 40 /// CCIfByVal - If the current argument has ByVal parameter attribute, apply 109 /// slot to implement ByVal aggregate parameter passing. Size and alignment
|
/external/llvm/lib/Target/Mips/ |
D | MipsISelLowering.cpp | 3448 struct ByValArgInfo ByVal; in handleByValArg() local 3455 allocateRegs(ByVal, ByValSize, Align); in handleByValArg() 3458 ByVal.Address = CCInfo.AllocateStack(ByValSize - RegSize * ByVal.NumRegs, in handleByValArg() 3460 CCInfo.addLoc(CCValAssign::getMem(ValNo, ValVT, ByVal.Address, LocVT, in handleByValArg() 3462 ByValArgs.push_back(ByVal); in handleByValArg() 3494 void MipsTargetLowering::MipsCC::allocateRegs(ByValArgInfo &ByVal, in allocateRegs() argument 3503 ByVal.FirstIdx = CCInfo.getFirstUnallocated(IntArgRegs, NumIntArgRegs); in allocateRegs() 3506 if ((Align > RegSize) && (ByVal.FirstIdx % 2)) { in allocateRegs() 3507 CCInfo.AllocateReg(IntArgRegs[ByVal.FirstIdx], ShadowRegs[ByVal.FirstIdx]); in allocateRegs() 3508 ++ByVal.FirstIdx; in allocateRegs() [all …]
|
D | MipsISelLowering.h | 414 void allocateRegs(ByValArgInfo &ByVal, unsigned ByValSize, 510 const MipsCC &CC, const ByValArgInfo &ByVal) const; 517 const MipsCC &CC, const ByValArgInfo &ByVal,
|
/external/llvm/include/llvm/IR/ |
D | CallSite.h | 276 return paramHasAttr(ArgNo + 1, Attribute::ByVal); in isByValArgument() 286 return paramHasAttr(ArgNo + 1, Attribute::ByVal) || in isByValOrInAllocaArgument()
|
D | Attributes.h | 73 ByVal, ///< Pass structure by value enumerator
|
D | Instructions.h | 1443 return AttributeList.hasAttrSomewhere(Attribute::ByVal); 3112 return AttributeList.hasAttrSomewhere(Attribute::ByVal);
|
/external/llvm/lib/IR/ |
D | Function.cpp | 92 hasAttribute(getArgNo()+1, Attribute::ByVal); in hasByValAttr() 106 return Attrs.hasAttribute(getArgNo() + 1, Attribute::ByVal) || in hasByValOrInAllocaAttr()
|
D | Attributes.cpp | 168 if (hasAttribute(Attribute::ByVal)) in getAsString() 368 case Attribute::ByVal: return 1 << 7; in getAttrMask() 1182 Incompatible.addAttribute(Attribute::ByVal) in typeIncompatible()
|
D | Verifier.cpp | 808 Assert1(!Attrs.hasAttribute(Idx, Attribute::ByVal) && in VerifyParameterAttrs() 820 AttrCount += Attrs.hasAttribute(Idx, Attribute::ByVal); in VerifyParameterAttrs() 855 Assert1(!Attrs.hasAttribute(Idx, Attribute::ByVal) && in VerifyParameterAttrs() 861 Assert1(!Attrs.hasAttribute(Idx, Attribute::ByVal), in VerifyParameterAttrs() 1633 Attribute::StructRet, Attribute::ByVal, Attribute::InAlloca, in getParameterABIAttributes()
|
/external/llvm/lib/Target/AArch64/ |
D | AArch64CallingConvention.td | 39 // Put ByVal arguments directly on the stack. Minimum size and alignment of a 114 // Put ByVal arguments directly on the stack. Minimum size and alignment of a
|
D | AArch64FastISel.cpp | 1372 CS.paramHasAttr(AttrInd, Attribute::ByVal)) in SelectCall()
|
/external/llvm/lib/Transforms/Instrumentation/ |
D | MemorySanitizer.cpp | 2316 if (CS.paramHasAttr(i + 1, Attribute::ByVal)) { in visitCallSite() 2609 bool IsByVal = CS.paramHasAttr(ArgNo + 1, Attribute::ByVal); in visitCallSite()
|
/external/llvm/lib/Target/ARM/ |
D | ARMFastISel.cpp | 2340 CS.paramHasAttr(AttrInd, Attribute::ByVal)) in SelectCall() 3016 F->getAttributes().hasAttribute(Idx, Attribute::ByVal)) in FastLowerArguments()
|
/external/llvm/lib/Target/X86/ |
D | X86FastISel.cpp | 2568 if (F->getAttributes().hasAttribute(Idx, Attribute::ByVal) || in FastLowerArguments() 2757 if (CS.paramHasAttr(AttrInd, Attribute::ByVal)) { in DoSelectCall()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCalls.cpp | 1304 Attribute::ByVal)) { in transformConstExprCastCall()
|
/external/clang/lib/CodeGen/ |
D | TargetInfo.cpp | 537 ABIArgInfo getIndirectResult(QualType Ty, bool ByVal, CCState &State) const; 790 ABIArgInfo X86_32ABIInfo::getIndirectResult(QualType Ty, bool ByVal, in getIndirectResult() argument 792 if (!ByVal) { in getIndirectResult()
|
/external/llvm/lib/Target/PowerPC/ |
D | PPCFastISel.cpp | 1446 CS.paramHasAttr(AttrIdx, Attribute::ByVal)) in SelectCall()
|
/external/llvm/lib/Target/CppBackend/ |
D | CPPBackend.cpp | 501 HANDLE_ATTR(ByVal); in printAttributes()
|
/external/llvm/lib/Target/NVPTX/ |
D | NVPTXAsmPrinter.cpp | 1833 if (PAL.hasAttribute(paramIndex + 1, Attribute::ByVal) == false) { in emitFunctionParamList()
|
/external/llvm/lib/Bitcode/Writer/ |
D | BitcodeWriter.cpp | 170 case Attribute::ByVal: in getAttrKindEncoding()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | TargetLowering.cpp | 77 isByVal = CS->paramHasAttr(AttrIdx, Attribute::ByVal); in setAttributes()
|