OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ParamTys
(Results
1 - 3
of
3
) sorted by null
/external/llvm/lib/Analysis/
TargetTransformInfo.cpp
78
Intrinsic::ID IID, Type *RetTy, ArrayRef<Type *>
ParamTys
) const {
79
return PrevTTI->getIntrinsicCost(IID, RetTy,
ParamTys
);
334
SmallVector<Type *, 8>
ParamTys
(FTy->param_begin(), FTy->param_end());
335
return TopTTI->getIntrinsicCost(IID, FTy->getReturnType(),
ParamTys
);
353
ArrayRef<Type *>
ParamTys
) const {
380
SmallVector<Type *, 8>
ParamTys
;
381
ParamTys
.reserve(Arguments.size());
383
ParamTys
.push_back(Arguments[Idx]->getType());
384
return TopTTI->getIntrinsicCost(IID, RetTy,
ParamTys
);
/external/llvm/lib/CodeGen/
IntrinsicLowering.cpp
32
std::vector<Type *>
ParamTys
;
34
ParamTys
.push_back(I->getType());
35
M.getOrInsertFunction(Name, FunctionType::get(RetTy,
ParamTys
, false));
72
std::vector<Type *>
ParamTys
;
74
ParamTys
.push_back((*I)->getType());
76
FunctionType::get(RetTy,
ParamTys
, false));
/frameworks/compile/libbcc/lib/Renderscript/
RSForEachExpand.cpp
187
llvm::SmallVector<llvm::Type*, 8>
ParamTys
;
188
ParamTys
.push_back(ForEachStubPtrTy); // const RsForEachStubParamStruct *p
189
ParamTys
.push_back(Int32Ty); // uint32_t x1
190
ParamTys
.push_back(Int32Ty); // uint32_t x2
191
ParamTys
.push_back(Int32Ty); // uint32_t instep
192
ParamTys
.push_back(Int32Ty); // uint32_t outstep
195
llvm::FunctionType::get(llvm::Type::getVoidTy(*C),
ParamTys
, false);
Completed in 156 milliseconds