Lines Matching refs:A
263 template<typename T,int R,int C, template<int> typename A>
264 void init_mat(Matrix<T,R,C,A> &pDst,std::size_t r,std::size_t c) in init_mat()
308 template<int> typename A,
310 void _matinv(const Matrix<T,NB,NB,A> &a,M && res) in _matinv()
380 template<int> typename A,
382 Matrix<T,NB,NB,TMP_ALLOC> matinv(const Matrix<T,NB,NB,A> &a) in matinv()
391 template<int> typename A,
393 Matrix<T,DYNAMIC,DYNAMIC,TMP_ALLOC> matinv(const Matrix<T,NB,NB,A> &a) in matinv()
402 template<int> typename A,
404 void matinv(Matrix<T,DYNAMIC,DYNAMIC,TMP_ALLOC> &res, const Matrix<T,NB,NB,A> &a) in matinv()
1129 template<int L,template<int> typename A,
1131 inline T _householder(Vector<T,L,A> &res,const V&v,const T eps) in _householder()
1282 template<typename T,int R,int C,template<int> typename A>
1283 auto QR(const Matrix<T,R,C,A>&m,const T eps,bool wantQ) in QR()
1469 template<typename T,int R,template<int> typename A>
1470 auto cholesky(const Matrix<T,R,R,A>&a) in cholesky()
1640 typename... A>
1641 using ALL_TESTS = mp_rename<mp_push_front<mp_product<F, A...>,float>,TEST_CASES>;