Home
last modified time | relevance | path

Searched defs:mat_traits (Results 1 – 5 of 5) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/qvm/
H A Dmat_traits_array.hpp22 mat_traits<T[R][CR][C]> struct
24 static int const rows=0;
25 static int const cols=0;
26 typedef void scalar_type;
31 mat_traits<T[Rows][Cols]> struct
33 typedef T this_matrix[Rows][Cols];
34 typedef typename qvm_detail::remove_const<T>::type scalar_type;
35 static int const rows=Rows;
36 static int const cols=Cols;
42 read_element( this_matrix const & x ) in read_element()
[all …]
H A Dmat.hpp38 mat_traits< mat<T,Rows,Cols> > struct
40 typedef mat<T,Rows,Cols> this_matrix;
41 typedef T scalar_type;
42 static int const rows=Rows;
43 static int const cols=Cols;
49 read_element( this_matrix const & x ) in read_element()
62 write_element( this_matrix & x ) in write_element()
74 read_element_idx( int row, int col, this_matrix const & x ) in read_element_idx()
86 write_element_idx( int row, int col, this_matrix & x ) in write_element_idx()
H A Dmat_operations.hpp209 mat_traits< qvm_detail::identity_mat_<T,Dim> > struct
211 typedef qvm_detail::identity_mat_<T,Dim> this_matrix;
212 typedef T scalar_type;
213 static int const rows=Dim;
214 static int const cols=Dim;
220 read_element( this_matrix const & x ) in read_element()
232 read_element_idx( int row, int col, this_matrix const & x ) in read_element_idx()
319 mat_traits< qvm_detail::projection_<T> > struct
321 typedef qvm_detail::projection_<T> this_matrix;
322 typedef T scalar_type;
[all …]
H A Dmat_traits.hpp17 mat_traits struct
19 static int const rows=0;
20 static int const cols=0;
21 typedef void scalar_type;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/qvm/detail/
H A Dtransp_impl.hpp54 mat_traits< qvm_detail::transposed_<OriginalMatrix> > struct
56 typedef typename mat_traits<OriginalMatrix>::scalar_type scalar_type;
57 typedef qvm_detail::transposed_<OriginalMatrix> this_matrix;
58 static int const rows=mat_traits<OriginalMatrix>::cols;
59 static int const cols=mat_traits<OriginalMatrix>::rows;
65 read_element( this_matrix const & x ) in read_element()
78 write_element( this_matrix & x ) in write_element()
90 read_element_idx( int row, int col, this_matrix const & x ) in read_element_idx()
102 write_element_idx( int row, int col, this_matrix & x ) in write_element_idx()