Lines Matching full:rows
14 template <typename T, int Rows, int Cols>
17 static const int Size = ((Rows==Dynamic || Cols==Dynamic) ? Dynamic : Rows*Cols); in dense_storage_copy()
18 typedef DenseStorage<T,Size, Rows,Cols, 0> DenseStorageType; in dense_storage_copy()
20 const int rows = (Rows==Dynamic) ? 4 : Rows; in dense_storage_copy() local
22 const int size = rows*cols; in dense_storage_copy()
23 DenseStorageType reference(size, rows, cols); in dense_storage_copy()
34 template <typename T, int Rows, int Cols>
37 static const int Size = ((Rows==Dynamic || Cols==Dynamic) ? Dynamic : Rows*Cols); in dense_storage_assignment()
38 typedef DenseStorage<T,Size, Rows,Cols, 0> DenseStorageType; in dense_storage_assignment()
40 const int rows = (Rows==Dynamic) ? 4 : Rows; in dense_storage_assignment() local
42 const int size = rows*cols; in dense_storage_assignment()
43 DenseStorageType reference(size, rows, cols); in dense_storage_assignment()