Home
last modified time | relevance | path

Searched refs:ParamTypes (Results 1 – 14 of 14) sorted by relevance

/third_party/node/deps/v8/src/codegen/
Dsignature.h150 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/
DSkSLFunctionDeclaration.h113 using ParamTypes = SkSTArray<8, const Type*>; variable
115 ParamTypes* outParameterTypes,
DSkSLFunctionDeclaration.cpp401 ParamTypes* outParameterTypes, in determineFinalTypes()
DSkSLFunctionCall.cpp824 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/
DInstrProfiling.cpp562 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/
DWasmEmitter.cpp334 encodeULEB128(Sig.ParamTypes.size(), OS); in writeSectionContent()
335 for (auto ParamType : Sig.ParamTypes) in writeSectionContent()
DWasmYAML.cpp298 IO.mapRequired("ParamTypes", Signature.ParamTypes); in mapping()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm-c/
DCore.h1220 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/
DCore.cpp643 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()
DAutoUpgrade.cpp731 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/
DWasmYAML.h147 std::vector<ValueType> ParamTypes; member
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DBuildLibCalls.cpp828 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/
DLLParser.cpp6077 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/
DIntrinsics.td301 // * ParamTypes is a list containing the parameter types expected for the
313 list<LLVMType> ParamTypes = param_types;