Lines Matching refs:MA

43 template<typename MA,
46 HasMatrixIndexing<MA>::value &&
49 inline void transposeTo(MA &dst, in transposeTo()
167 template<typename MA,
169 typename std::enable_if<CompatibleStaticMatMatProduct<MA,MB>::value &&
170 … number_traits<typename traits<MA>::Scalar>::is_fixed,bool>::type = true>
171 inline typename OutputMatrix<MA,MB>::type dot(const MA&ma,const MB&mb) in dot()
174 typename OutputMatrix<MA,MB>::type res; in dot()
182 template<typename MA,
184 typename std::enable_if<CompatibleStaticMatMatProduct<MA,MB>::value &&
185 … number_traits<typename traits<MA>::Scalar>::is_float,bool>::type = true>
186 inline typename OutputMatrix<MA,MB>::type dot(const MA&ma,const MB&mb) in dot()
189 typename OutputMatrix<MA,MB>::type res; in dot()
196 template<typename MA,
198 typename std::enable_if<CompatibleDynamicMatMatProduct<MA,MB>::value &&
199 … number_traits<typename traits<MA>::Scalar>::is_fixed,bool>::type = true>
200 inline typename OutputMatrix<MA,MB>::type dot(const MA&ma,const MB&mb) in dot()
202 typename OutputMatrix<MA,MB>::type res(ma.rows(),mb.columns()); in dot()
210 template<typename MA,
212 typename std::enable_if<CompatibleDynamicMatMatProduct<MA,MB>::value &&
213 … number_traits<typename traits<MA>::Scalar>::is_float,bool>::type = true>
214 inline typename OutputMatrix<MA,MB>::type dot(const MA&ma,const MB&mb) in dot()
216 typename OutputMatrix<MA,MB>::type res(ma.rows(),mb.columns()); in dot()
238 template<typename MA,
241 typename std::enable_if<CompatibleDynamicMatMatProduct<MA,MB>::value &&
242 … number_traits<typename traits<MA>::Scalar>::is_float,bool>::type = true>
243 inline void dot(RES &&res,const MA&ma,const MB&mb) in dot()
251 template<typename MA,
254 typename std::enable_if<CompatibleDynamicMatMatProductDynamicStride<MA,MB>::value &&
255 … number_traits<typename traits<MA>::Scalar>::is_float,bool>::type = true>
256 inline typename OutputMatrix<MA,MB>::type dot(const MA&ma,const MB&mb) in dot()
258 typename OutputMatrix<MA,MB>::type res(ma.rows(),mb.columns()); in dot()
265 template<typename MA,
268 typename std::enable_if<CompatibleDynamicMatMatProductDynamicStride<MA,MB>::value &&
269 … number_traits<typename traits<MA>::Scalar>::is_fixed,bool>::type = true>
270 inline typename OutputMatrix<MA,MB>::type dot(const MA&ma,const MB&mb,const TMP &mbt) in dot()
272 typename OutputMatrix<MA,MB>::type res(ma.rows(),mb.columns()); in dot()