Lines Matching refs:v
67 inline void _diagonal(Matrix<P,R,R,A> &v, in _diagonal() argument
74 v.row(r) = P{}; in _diagonal()
75 v(r,r) = other[r]; in _diagonal()
91 inline void _fill_diagonal(Matrix<P,R,R,A> &v, in _fill_diagonal() argument
97 v(r,r) = other[r]; in _fill_diagonal()
103 inline void _identity(Matrix<P,R,R,A> &v, in _identity() argument
109 v.row(r) = P{}; in _identity()
110 v(r,r) = number_traits<P>::one(); in _identity()
129 inline typename OutputVector<M,V>::type dot(const M&m,const V&v) in dot() argument
132 _dot_m_v(res,m,v,CURRENT_ARCH); in dot()
139 inline typename OutputVector<M,V>::type dot(const M&m,const V&v) in dot() argument
142 _dot_m_v(res,m,v,CURRENT_ARCH); in dot()
150 inline void dot(RES && res,const M&m,const V&v) in dot() argument
153 _dot_m_v(res,m,v,CURRENT_ARCH); in dot()