Lines Matching refs:Transformation
24 template<typename Transformation, typename Data>
25 EIGEN_DONT_INLINE void transform(const Transformation& t, Data& data) in transform()
67 template<typename Transformation, int N>
70 static EIGEN_DONT_INLINE void run(const Transformation& t) in run()
72 Matrix<typename Transformation::Scalar,get_dim<Transformation>::Dim,N> data; in run()
74 bench_impl<Transformation,N-1>::run(t); in run()
83 template<typename Transformation>
84 struct bench_impl<Transformation,0>
86 static EIGEN_DONT_INLINE void run(const Transformation&) {} in run()
89 template<typename Transformation>
90 EIGEN_DONT_INLINE void bench(const std::string& msg, const Transformation& t) in bench()
93 bench_impl<Transformation,SIZE>::run(t); in bench()