| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
| D | R600OpenCLImageTypeLoweringPass.cpp | 273 SmallVector<Type *, 8> ArgTypes; in addImplicitArgs() local 281 ArgTypes.push_back(FT->getParamType(i)); in addImplicitArgs() 289 ArgTypes.push_back(ImageSizeType); in addImplicitArgs() 294 ArgTypes.push_back(ImageFormatType); in addImplicitArgs() 305 auto NewFT = FunctionType::get(FT->getReturnType(), ArgTypes, false); in addImplicitArgs()
|
| /third_party/skia/third_party/externals/angle2/src/libANGLE/ |
| D | ResourceManager.h | 88 template <typename... ArgTypes> 91 ArgTypes... args) in checkObjectAllocation() 112 template <typename... ArgTypes> 115 ArgTypes... args) in checkObjectAllocationImpl()
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/ |
| D | DataFlowSanitizer.cpp | 490 SmallVector<Type *, 4> ArgTypes(T->param_begin(), T->param_end()); in getArgsFunctionType() local 491 ArgTypes.append(T->getNumParams(), ShadowTy); in getArgsFunctionType() 493 ArgTypes.push_back(ShadowPtrTy); in getArgsFunctionType() 497 return FunctionType::get(RetType, ArgTypes, T->isVarArg()); in getArgsFunctionType() 502 SmallVector<Type *, 4> ArgTypes; in getTrampolineFunctionType() local 503 ArgTypes.push_back(T->getPointerTo()); in getTrampolineFunctionType() 504 ArgTypes.append(T->param_begin(), T->param_end()); in getTrampolineFunctionType() 505 ArgTypes.append(T->getNumParams(), ShadowTy); in getTrampolineFunctionType() 508 ArgTypes.push_back(ShadowPtrTy); in getTrampolineFunctionType() 509 return FunctionType::get(T->getReturnType(), ArgTypes, false); in getTrampolineFunctionType() [all …]
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
| D | EntryExitInstrumenter.cpp | 41 Type *ArgTypes[] = {Type::getInt8PtrTy(C), Type::getInt8PtrTy(C)}; in insertCall() local 44 Func, FunctionType::get(Type::getVoidTy(C), ArgTypes, false)); in insertCall()
|
| D | CloneFunction.cpp | 239 std::vector<Type*> ArgTypes; in CloneFunction() local 246 ArgTypes.push_back(I.getType()); in CloneFunction() 250 ArgTypes, F->getFunctionType()->isVarArg()); in CloneFunction()
|
| D | CodeExtractor.cpp | 1104 std::vector<Type *> ArgTypes; in emitCallAndSwitchStatement() local 1107 ArgTypes.push_back((*v)->getType()); in emitCallAndSwitchStatement() 1110 StructArgTy = StructType::get(newFunction->getContext(), ArgTypes); in emitCallAndSwitchStatement()
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
| D | Optional.h | 74 template<typename ...ArgTypes> 75 void emplace(ArgTypes &&...Args) { in emplace() 78 new (storage.buffer) T(std::forward<ArgTypes>(Args)...); in emplace()
|
| D | APFloat.h | 670 template <typename... ArgTypes> 671 Storage(const fltSemantics &Semantics, ArgTypes &&... Args) { in Storage() 673 new (&IEEE) IEEEFloat(Semantics, std::forward<ArgTypes>(Args)...); in Storage() 677 new (&Double) DoubleAPFloat(Semantics, std::forward<ArgTypes>(Args)...); in Storage()
|
| D | SmallVector.h | 635 template <typename... ArgTypes> void emplace_back(ArgTypes &&... Args) { in emplace_back() 638 ::new ((void *)this->end()) T(std::forward<ArgTypes>(Args)...); in emplace_back()
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
| D | Optional.h | 237 template <typename... ArgTypes> void emplace(ArgTypes &&... Args) { in emplace() 238 Storage.emplace(std::forward<ArgTypes>(Args)...); in emplace()
|
| D | APFloat.h | 708 template <typename... ArgTypes> 709 Storage(const fltSemantics &Semantics, ArgTypes &&... Args) { in Storage() 711 new (&IEEE) IEEEFloat(Semantics, std::forward<ArgTypes>(Args)...); in Storage() 715 new (&Double) DoubleAPFloat(Semantics, std::forward<ArgTypes>(Args)...); in Storage()
|
| D | SmallVector.h | 641 template <typename... ArgTypes> reference emplace_back(ArgTypes &&... Args) { in emplace_back() 644 ::new ((void *)this->end()) T(std::forward<ArgTypes>(Args)...); in emplace_back()
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
| D | SelectionDAG.h | 354 template <typename SDNodeT, typename... ArgTypes> 355 SDNodeT *newSDNode(ArgTypes &&... Args) { 357 SDNodeT(std::forward<ArgTypes>(Args)...); 366 template <typename SDNodeT, typename... ArgTypes> 368 ArgTypes &&... Args) { 372 return SDNodeT(IROrder, DebugLoc(), std::forward<ArgTypes>(Args)...)
|
| /third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
| D | IceTargetLoweringX8664.cpp | 6295 CfgVector<Type> ArgTypes; in genTargetHelperCallFor() local 6304 ArgTypes = {IceType_i64}; in genTargetHelperCallFor() 6306 ArgTypes = {IceType_i32}; in genTargetHelperCallFor() 6310 ArgTypes = {IceType_i32, IceType_i32}; in genTargetHelperCallFor() 6314 ArgTypes = {IceType_i32, IceType_i32, IceType_i32}; in genTargetHelperCallFor() 6318 ArgTypes = {IceType_i32, IceType_i32, IceType_i32}; in genTargetHelperCallFor() 6322 ArgTypes = {IceType_i32, IceType_i32, IceType_i32}; in genTargetHelperCallFor() 6326 ArgTypes = {IceType_i32}; in genTargetHelperCallFor() 6330 StackArgumentsSize = getCallStackArgumentsSizeBytes(ArgTypes, ReturnType); in genTargetHelperCallFor() 6349 TargetX8664::getCallStackArgumentsSizeBytes(const CfgVector<Type> &ArgTypes, in getCallStackArgumentsSizeBytes() argument [all …]
|
| D | IceTargetLoweringX8632.cpp | 7031 CfgVector<Type> ArgTypes; in genTargetHelperCallFor() local 7040 ArgTypes = {IceType_i64}; in genTargetHelperCallFor() 7042 ArgTypes = {IceType_i32}; in genTargetHelperCallFor() 7046 ArgTypes = {IceType_i32, IceType_i32}; in genTargetHelperCallFor() 7050 ArgTypes = {IceType_i32, IceType_i32, IceType_i32}; in genTargetHelperCallFor() 7054 ArgTypes = {IceType_i32, IceType_i32, IceType_i32}; in genTargetHelperCallFor() 7058 ArgTypes = {IceType_i32, IceType_i32, IceType_i32}; in genTargetHelperCallFor() 7062 ArgTypes = {IceType_i32}; in genTargetHelperCallFor() 7066 StackArgumentsSize = getCallStackArgumentsSizeBytes(ArgTypes, ReturnType); in genTargetHelperCallFor() 7085 TargetX8632::getCallStackArgumentsSizeBytes(const CfgVector<Type> &ArgTypes, in getCallStackArgumentsSizeBytes() argument [all …]
|
| D | IceTargetLoweringX8632.h | 287 uint32_t getCallStackArgumentsSizeBytes(const CfgVector<Type> &ArgTypes,
|
| D | IceTargetLoweringX8664.h | 283 uint32_t getCallStackArgumentsSizeBytes(const CfgVector<Type> &ArgTypes,
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/ |
| D | LowerTypeTests.cpp | 1388 SmallVector<Type *, 16> ArgTypes; in createJumpTable() local 1389 ArgTypes.reserve(AsmArgs.size()); in createJumpTable() 1391 ArgTypes.push_back(Arg->getType()); in createJumpTable() 1393 InlineAsm::get(FunctionType::get(IRB.getVoidTy(), ArgTypes, false), in createJumpTable()
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
| D | IRBuilder.cpp | 619 Type *ArgTypes[] = { FuncPtrType }; in CreateGCStatepointCallCommon() local 622 ArgTypes); in CreateGCStatepointCallCommon()
|
| /third_party/rust/crates/bindgen/bindgen-tests/tests/ |
| D | stylo.hpp | 918 template<typename Result, typename... ArgTypes> 919 struct IsFunPtr<Result(*)(ArgTypes...)>
|