Searched refs:FT2 (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/llvm-project/compiler-rt/lib/nsan/ |
H A D | nsan.cpp | 163 template <typename FT1, typename FT2, bool Enable> struct LargestFTImpl { 164 using type = FT2; 167 template <typename FT1, typename FT2> struct LargestFTImpl<FT1, FT2, true> { 171 template <typename FT1, typename FT2> 173 typename LargestFTImpl<FT1, FT2, (sizeof(FT1) > sizeof(FT2))>::type;
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaTemplateDeduction.cpp | 5406 const FunctionTemplateDecl *FT2, in isAtLeastAsSpecializedAs() argument 5414 FunctionDecl *FD2 = FT2->getTemplatedDecl(); in isAtLeastAsSpecializedAs() 5419 TemplateParameterList *TemplateParams = FT2->getTemplateParameters(); in isAtLeastAsSpecializedAs() 5531 FunctionTemplateDecl *FT1, FunctionTemplateDecl *FT2, SourceLocation Loc, in getMoreSpecializedTemplate() argument 5537 const FunctionDecl *FD2 = FT2->getTemplatedDecl(); in getMoreSpecializedTemplate() 5603 bool Better1 = isAtLeastAsSpecializedAs(*this, Loc, FT1, FT2, TPOC, Reversed, in getMoreSpecializedTemplate() 5605 bool Better2 = isAtLeastAsSpecializedAs(*this, Loc, FT2, FT1, TPOC, Reversed, in getMoreSpecializedTemplate() 5611 return Better1 ? FT1 : FT2; in getMoreSpecializedTemplate() 5644 return FT2; in getMoreSpecializedTemplate() 5672 return FT2; in getMoreSpecializedTemplate() [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | Sema.h | 12523 FunctionTemplateDecl *FT1, FunctionTemplateDecl *FT2, SourceLocation Loc,
|