Lines Matching full:static
43 static inline std::string name( void )
48 static void free_matrix(gene_matrix & A, int N) {}
50 static void free_vector(gene_vector & B) {}
52 static BTL_DONT_INLINE void matrix_from_stl(gene_matrix & A, stl_matrix & A_stl){
62 static BTL_DONT_INLINE void vector_from_stl(gene_vector & B, stl_vector & B_stl){
70 static BTL_DONT_INLINE void vector_to_stl(gene_vector & B, stl_vector & B_stl){
76 static BTL_DONT_INLINE void matrix_to_stl(gene_matrix & A, stl_matrix & A_stl){
87 static inline void matrix_matrix_product(const gene_matrix & A, const gene_matrix & B, gene_matrix & X, int N){
91 static inline void transposed_matrix_matrix_product(const gene_matrix & A, const gene_matrix & B, gene_matrix & X, int N){
95 // static inline void ata_product(const gene_matrix & A, gene_matrix & X, int N){
99 static inline void aat_product(const gene_matrix & A, gene_matrix & X, int N){
104 static inline void matrix_vector_product(const gene_matrix & A, const gene_vector & B, gene_vector & X, int N){
108 static inline void symv(const gene_matrix & A, const gene_vector & B, gene_vector & X, int N){
113 template<typename Dest, typename Src> static void triassign(Dest& dst, const Src& src)
158 static EIGEN_DONT_INLINE void syr2(gene_matrix & A, gene_vector & X, gene_vector & Y, int N){
164 static EIGEN_DONT_INLINE void ger(gene_matrix & A, gene_vector & X, gene_vector & Y, int N){
169 static EIGEN_DONT_INLINE void rot(gene_vector & A, gene_vector & B, real c, real s, int N){
173 static inline void atv_product(gene_matrix & A, gene_vector & B, gene_vector & X, int N){
177 static inline void axpy(real coef, const gene_vector & X, gene_vector & Y, int N){
181 static inline void axpby(real a, const gene_vector & X, real b, gene_vector & Y, int N){
185 static EIGEN_DONT_INLINE void copy_matrix(const gene_matrix & source, gene_matrix & cible, int N){
189 static EIGEN_DONT_INLINE void copy_vector(const gene_vector & source, gene_vector & cible, int N){
193 static inline void trisolve_lower(const gene_matrix & L, const gene_vector& B, gene_vector& X, int N){
197 static inline void trisolve_lower_matrix(const gene_matrix & L, const gene_matrix& B, gene_matrix& X, int N){
201 static inline void trmm(const gene_matrix & L, const gene_matrix& B, gene_matrix& X, int N){
205 static inline void cholesky(const gene_matrix & X, gene_matrix & C, int N){
214 static inline void lu_decomp(const gene_matrix & X, gene_matrix & C, int N){
218 static inline void partial_lu_decomp(const gene_matrix & X, gene_matrix & C, int N){
226 static inline void tridiagonalization(const gene_matrix & X, gene_matrix & C, int N){
232 static inline void hessenberg(const gene_matrix & X, gene_matrix & C, int N){