OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ParamTys
(Results
1 - 7
of
7
) 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
);
/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);
/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));
/external/llvm/include/llvm/Analysis/
TargetTransformInfo.h
149
ArrayRef<Type *>
ParamTys
) const;
/external/llvm/bindings/ocaml/llvm/
llvm_ocaml.c
255
CAMLprim LLVMTypeRef llvm_function_type(LLVMTypeRef RetTy, value
ParamTys
) {
256
return LLVMFunctionType(RetTy, (LLVMTypeRef *)
ParamTys
,
257
Wosize_val(
ParamTys
), 0);
262
value
ParamTys
) {
263
return LLVMFunctionType(RetTy, (LLVMTypeRef *)
ParamTys
,
264
Wosize_val(
ParamTys
), 1);
[
all
...]
/external/clang/lib/Sema/
SemaOverload.cpp
[
all
...]
/external/clang/include/clang/Sema/
Sema.h
[
all
...]
Completed in 787 milliseconds