Lines Matching refs:Rows
29 template <class T,int Rows,int Cols>
31 mat_traits<T[Rows][Cols]>
33 typedef T this_matrix[Rows][Cols];
35 static int const rows=Rows;
45 BOOST_QVM_STATIC_ASSERT(Row<Rows); in read_element()
58 BOOST_QVM_STATIC_ASSERT(Row<Rows); in write_element()
70 BOOST_QVM_ASSERT(row<Rows); in read_element_idx()
82 BOOST_QVM_ASSERT(row<Rows); in write_element_idx()
89 template <class T,int Rows,int Cols,int R,int C>
91 deduce_mat<T[Rows][Cols],R,C>
96 template <class T,int Rows,int Cols,int R,int C>
98 deduce_mat<T const[Rows][Cols],R,C>
103 template <class T1,class T2,int Rows,int Cols,int R,int C>
105 deduce_mat2<T1[Rows][Cols],T2[Rows][Cols],R,C>
110 template <int Rows,int Cols,class T>
111 T (&ptr_mref( T * ptr ))[Rows][Cols]
113 return *reinterpret_cast<T (*)[Rows][Cols]>(ptr); in __anonb32a0c5d0102()