Lines Matching refs:MB

44          typename MB,
47 HasMatrixIndexing<MB>::value /*&&
50 const MB& src) in transposeTo()
168 typename MB,
169 typename std::enable_if<CompatibleStaticMatMatProduct<MA,MB>::value &&
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()
183 typename MB,
184 typename std::enable_if<CompatibleStaticMatMatProduct<MA,MB>::value &&
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()
197 typename MB,
198 typename std::enable_if<CompatibleDynamicMatMatProduct<MA,MB>::value &&
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()
211 typename MB,
212 typename std::enable_if<CompatibleDynamicMatMatProduct<MA,MB>::value &&
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()
239 typename MB,
241 typename std::enable_if<CompatibleDynamicMatMatProduct<MA,MB>::value &&
243 inline void dot(RES &&res,const MA&ma,const MB&mb) in dot()
252 typename MB,
254 typename std::enable_if<CompatibleDynamicMatMatProductDynamicStride<MA,MB>::value &&
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()
266 typename MB,
268 typename std::enable_if<CompatibleDynamicMatMatProductDynamicStride<MA,MB>::value &&
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()