Home | History | Annotate | Download | only in bench

Lines Matching refs:Quat

8 template<typename Quat>
9 EIGEN_DONT_INLINE void quatmul_default(const Quat& a, const Quat& b, Quat& c)
14 template<typename Quat>
15 EIGEN_DONT_INLINE void quatmul_novec(const Quat& a, const Quat& b, Quat& c)
17 c = internal::quat_product<0, Quat, Quat, typename Quat::Scalar, Aligned>::run(a,b);
20 template<typename Quat> void bench(const std::string& label)
26 Quat a(4, 1, 2, 3);
27 Quat b(2, 3, 4, 5);
28 Quat c;