/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/swiftshader/third_party/llvm-7.0/llvm/unittests/ExecutionEngine/Orc/ |
D | IndirectionUtilsTest.cpp | 29 AttributeSet::get(Context, AttrBuilder().addAttribute(Attribute::ByVal)), in TEST() 43 EXPECT_TRUE(Call->paramHasAttr(1U, Attribute::ByVal)) in TEST()
|
/external/swiftshader/third_party/LLVM/include/llvm/ |
D | Attributes.h | 44 const Attributes ByVal = 1<<7; ///< Pass structure by value variable 88 const Attributes ParameterOnly = ByVal | Nest | StructRet | NoCapture; 102 ByVal | InReg | Nest | StructRet,
|
/external/llvm/unittests/ExecutionEngine/Orc/ |
D | IndirectionUtilsTest.cpp | 29 AttrBuilder().addAttribute(Attribute::ByVal))); in TEST() 45 EXPECT_TRUE(Call->paramHasAttr(2U, Attribute::ByVal)) in TEST()
|
/external/swiftshader/third_party/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/llvm/include/llvm/Target/ |
D | TargetCallingConv.h | 36 static const uint64_t ByVal = 1ULL<<4; ///< Struct passed by value member 82 bool isByVal() const { return Flags & ByVal; } in isByVal()
|
D | TargetCallingConv.td | 40 /// CCIfByVal - If the current argument has ByVal parameter attribute, apply 122 /// slot to implement ByVal aggregate parameter passing. Size and alignment
|
/external/clang/include/clang/CodeGen/ |
D | CGFunctionInfo.h | 151 static ABIArgInfo getIndirect(CharUnits Alignment, bool ByVal = true, 156 AI.setIndirectByVal(ByVal); 162 static ABIArgInfo getIndirectInReg(CharUnits Alignment, bool ByVal = true, 164 auto AI = getIndirect(Alignment, ByVal, Realign);
|
/external/swiftshader/third_party/LLVM/lib/VMCore/ |
D | Attributes.cpp | 51 if (Attrs & Attribute::ByVal) in getAsString() 104 Incompatible |= ByVal | Nest | NoAlias | StructRet | NoCapture; in typeIncompatible()
|
/external/mesa3d/src/amd/common/ |
D | ac_llvm_helper.cpp | 63 return AS.hasAttribute(ArgNo + 1, llvm::Attribute::ByVal) || in ac_is_sgpr_param()
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
D | Attributes.inc | 8 ByVal, 65 .Case("byval", Attribute::ByVal) 174 return llvm::Attribute::ByVal;
|
/external/swiftshader/third_party/llvm-subzero/build/Windows/include/llvm/IR/ |
D | Attributes.gen | 8 ByVal, 65 .Case("byval", Attribute::ByVal) 174 return llvm::Attribute::ByVal;
|
/external/swiftshader/third_party/llvm-subzero/build/Fuchsia/include/llvm/IR/ |
D | Attributes.gen | 8 ByVal, 65 .Case("byval", Attribute::ByVal) 174 return llvm::Attribute::ByVal;
|
/external/swiftshader/third_party/llvm-subzero/build/Linux/include/llvm/IR/ |
D | Attributes.gen | 8 ByVal, 65 .Case("byval", Attribute::ByVal) 174 return llvm::Attribute::ByVal;
|
/external/swiftshader/third_party/llvm-subzero/build/MacOS/include/llvm/IR/ |
D | Attributes.gen | 8 ByVal, 65 .Case("byval", Attribute::ByVal) 174 return llvm::Attribute::ByVal;
|
/external/swiftshader/third_party/llvm-subzero/build/Android/include/llvm/IR/ |
D | Attributes.gen | 8 ByVal, 65 .Case("byval", Attribute::ByVal) 174 return llvm::Attribute::ByVal;
|
/external/swiftshader/third_party/llvm-7.0/configs/common/lib/IR/ |
D | AttributesCompatFunc.inc | 8 ByVal, 71 .Case("byval", Attribute::ByVal) 186 return llvm::Attribute::ByVal;
|
/external/swiftshader/third_party/llvm-7.0/configs/common/include/llvm/IR/ |
D | Attributes.inc | 8 ByVal, 71 .Case("byval", Attribute::ByVal) 186 return llvm::Attribute::ByVal;
|
/external/llvm/include/llvm/IR/ |
D | CallSite.h | 540 return paramHasAttr(ArgNo + 1, Attribute::ByVal); in isByValArgument() 550 return paramHasAttr(ArgNo + 1, Attribute::ByVal) || in isByValOrInAllocaArgument()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Target/ |
D | TargetCallingConv.td | 40 /// CCIfByVal - If the current argument has ByVal parameter attribute, apply 122 /// slot to implement ByVal aggregate parameter passing. Size and alignment
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/ |
D | CallSite.h | 599 return paramHasAttr(ArgNo, Attribute::ByVal); in isByValArgument() 609 return paramHasAttr(ArgNo, Attribute::ByVal) || in isByValOrInAllocaArgument()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/GlobalISel/ |
D | CallLowering.cpp | 78 if (Attrs.hasAttribute(OpIdx, Attribute::ByVal)) in setArgFlags()
|
/external/llvm/lib/Target/AMDGPU/ |
D | AMDGPUTargetTransformInfo.cpp | 298 F->getAttributes().hasAttribute(A->getArgNo() + 1, Attribute::ByVal)) in isArgPassedInSGPR()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/ |
D | Lint.cpp | 274 if (PAL.hasParamAttribute(ArgNo++, Attribute::ByVal)) in visitCallSite() 304 if (PAL.hasParamAttribute(ArgNo++, Attribute::ByVal)) in visitCallSite()
|