Home | History | Annotate | Download | only in arch

Lines Matching full:template

1 // This file is part of Eigen, a lightweight C++ template library
18 template<class Derived, class OtherDerived>
25 __m128 a = _a.coeffs().template packet<Aligned>(0);
26 __m128 b = _b.coeffs().template packet<Aligned>(0);
40 template<typename VectorLhs,typename VectorRhs>
46 __m128 a = lhs.template packet<VectorLhs::Flags&AlignedBit ? Aligned : Unaligned>(0);
47 __m128 b = rhs.template packet<VectorRhs::Flags&AlignedBit ? Aligned : Unaligned>(0);
59 template<class Derived, class OtherDerived>
69 Packet2d b_xy = _b.coeffs().template packet<Aligned>(0);
70 Packet2d b_zw = _b.coeffs().template packet<Aligned>(2);