Searched refs:Rest (Results 1 - 6 of 6) sorted by relevance

/external/clang/test/CXX/temp/temp.arg/temp.arg.template/
H A Dp3-0x.cpp5 template <template <class, class...> class TT, class T1, class... Rest>
6 struct eval<TT<T1, Rest...>> { };
21 template<int I, int J, int ...Rest> struct X0a;
22 template<int ...Rest> struct X0b;
32 template<int I, int J, int ...Rest> struct X1a;
33 template<long I, long ...Rest> struct X1b;
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dpartial-ordering.cpp33 template<typename T1, typename T2, typename ...Rest>
34 int &f0(T1, T2, Rest...);
44 template<typename T1, typename T2, typename ...Rest>
45 int &f1(T1, T2, Rest...);
54 template<typename T1, typename T2, typename ...Rest>
55 int &f2(T1, T2, Rest...);
H A Dmetafunctions.cpp98 template<int First, int ...Rest>
99 struct sum<First, Rest...> {
100 static const int value = First + sum<Rest...>::value;
/external/llvm/lib/Target/X86/MCTargetDesc/
H A DX86AsmBackend.cpp313 const uint64_t Rest = OptimalCount - Prefixes; local
314 for (uint64_t i = 0, e = Rest; i != e; i++)
315 OW->Write8(Nops[Rest - 1][i]);
/external/llvm/lib/Analysis/
H A DScalarEvolutionExpander.cpp838 /// Move parts of Base into Rest to leave Base with the minimal
841 static void ExposePointerBase(const SCEV *&Base, const SCEV *&Rest, argument
845 Rest = SE.getAddExpr(Rest,
855 NewAddOps.back() = Rest;
856 Rest = SE.getAddExpr(NewAddOps);
857 ExposePointerBase(Base, Rest, SE);
1311 const SCEV *Rest = SE.getAddRecExpr(NewOps, L, SCEV::FlagAnyWrap); local
1316 const SCEV *RestArray[1] = { Rest };
1333 SE.getUnknown(expand(Rest))));
[all...]
/external/llvm/lib/MC/
H A DELFObjectWriter.cpp522 StringRef Rest = AliasName.substr(Pos); local
523 if (!Symbol.isUndefined() && !Rest.startswith("@@@"))
527 if (Symbol.isUndefined() && Rest.startswith("@@") &&
528 !Rest.startswith("@@@"))

Completed in 423 milliseconds