Home | History | Annotate | Download | only in products

Lines Matching defs:Transpose

38     // transpose the product such that the result is column major
281 Transpose = StorageOrder==RowMajor,
282 ActualRows = Transpose ? MaxCols : MaxRows,
283 ActualCols = Transpose ? MaxRows : MaxCols
285 typedef typename conditional<Transpose,_RhsScalar,_LhsScalar>::type LhsScalar;
286 typedef typename conditional<Transpose,_LhsScalar,_RhsScalar>::type RhsScalar;
332 Transpose = StorageOrder==RowMajor
334 typedef typename conditional<Transpose,_RhsScalar,_LhsScalar>::type LhsScalar;
335 typedef typename conditional<Transpose,_LhsScalar,_RhsScalar>::type RhsScalar;
345 this->m_mc = Transpose ? cols : rows;
346 this->m_nc = Transpose ? rows : cols;
365 this->m_mc = Transpose ? cols : rows;
366 this->m_nc = Transpose ? rows : cols;