/third_party/node/deps/v8/src/codegen/ |
D | signature.h | 150 template <typename... ParamTypes> 151 auto Params(ParamTypes... param_types) const { in Params() 153 return FixedSizeSignature<T, kNumReturns, sizeof...(ParamTypes)>{ in Params() 185 template <typename... ParamTypes> 186 static auto Params(ParamTypes... param_types) { in Params() 187 return FixedSizeSignature<T, 0, sizeof...(ParamTypes)>{ in Params()
|
/third_party/skia/src/sksl/ir/ |
D | SkSLFunctionDeclaration.h | 113 using ParamTypes = SkSTArray<8, const Type*>; variable 115 ParamTypes* outParameterTypes,
|
D | SkSLFunctionDeclaration.cpp | 401 ParamTypes* outParameterTypes, in determineFinalTypes()
|
D | SkSLFunctionCall.cpp | 824 FunctionDeclaration::ParamTypes types; in CallCost() 958 FunctionDeclaration::ParamTypes types; in Convert()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/ |
D | InstrProfiling.cpp | 562 Type *ParamTypes[] = { in getOrInsertValueProfilingCall() local 567 FunctionType::get(ReturnTy, makeArrayRef(ParamTypes), false); in getOrInsertValueProfilingCall() 968 Type *ParamTypes[] = {VoidPtrTy, Int64Ty}; in emitRegistration() local 970 FunctionType::get(VoidTy, makeArrayRef(ParamTypes), false); in emitRegistration()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/ |
D | WasmEmitter.cpp | 334 encodeULEB128(Sig.ParamTypes.size(), OS); in writeSectionContent() 335 for (auto ParamType : Sig.ParamTypes) in writeSectionContent()
|
D | WasmYAML.cpp | 298 IO.mapRequired("ParamTypes", Signature.ParamTypes); in mapping()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm-c/ |
D | Core.h | 1220 LLVMTypeRef *ParamTypes, unsigned ParamCount, 2438 LLVMTypeRef *ParamTypes, 2448 LLVMTypeRef *ParamTypes, size_t ParamCount); 2467 LLVMTypeRef *ParamTypes,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | Core.cpp | 643 LLVMTypeRef *ParamTypes, unsigned ParamCount, in LLVMFunctionType() argument 645 ArrayRef<Type*> Tys(unwrap(ParamTypes), ParamCount); in LLVMFunctionType() 2325 LLVMTypeRef *ParamTypes, in LLVMGetIntrinsicDeclaration() argument 2327 ArrayRef<Type*> Tys(unwrap(ParamTypes), ParamCount); in LLVMGetIntrinsicDeclaration() 2340 LLVMTypeRef *ParamTypes, size_t ParamCount) { in LLVMIntrinsicGetType() argument 2342 ArrayRef<Type*> Tys(unwrap(ParamTypes), ParamCount); in LLVMIntrinsicGetType() 2347 LLVMTypeRef *ParamTypes, in LLVMIntrinsicCopyOverloadedName() argument 2351 ArrayRef<Type*> Tys(unwrap(ParamTypes), ParamCount); in LLVMIntrinsicCopyOverloadedName()
|
D | AutoUpgrade.cpp | 731 ArrayRef<Type *> ParamTypes = F->getFunctionType()->params().slice(0, 3); in UpgradeIntrinsicFunction1() local 733 ParamTypes); in UpgradeIntrinsicFunction1() 739 ArrayRef<Type *> ParamTypes = F->getFunctionType()->params().slice(0, 3); in UpgradeIntrinsicFunction1() local 741 ParamTypes); in UpgradeIntrinsicFunction1() 748 Type *ParamTypes[2] = { in UpgradeIntrinsicFunction1() local 753 ParamTypes); in UpgradeIntrinsicFunction1()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ObjectYAML/ |
D | WasmYAML.h | 147 std::vector<ValueType> ParamTypes; member
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | BuildLibCalls.cpp | 828 ArrayRef<Type *> ParamTypes, in emitLibCall() argument 837 FunctionType *FuncType = FunctionType::get(ReturnType, ParamTypes, IsVaArgs); in emitLibCall()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/AsmParser/ |
D | LLParser.cpp | 6077 std::vector<Type*> ParamTypes; in ParseInvoke() local 6079 ParamTypes.push_back(ArgList[i].V->getType()); in ParseInvoke() 6084 Ty = FunctionType::get(RetType, ParamTypes, false); in ParseInvoke() 6404 std::vector<Type *> ParamTypes; in ParseCallBr() local 6406 ParamTypes.push_back(ArgList[i].V->getType()); in ParseCallBr() 6411 Ty = FunctionType::get(RetType, ParamTypes, false); in ParseCallBr() 6814 std::vector<Type*> ParamTypes; in ParseCall() local 6816 ParamTypes.push_back(ArgList[i].V->getType()); in ParseCall() 6821 Ty = FunctionType::get(RetType, ParamTypes, false); in ParseCall()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | Intrinsics.td | 301 // * ParamTypes is a list containing the parameter types expected for the 313 list<LLVMType> ParamTypes = param_types;
|