Searched defs:ToDenseMatrix (Results 1 - 5 of 5) sorted by relevance

/external/ceres-solver/internal/ceres/
H A Dblock_sparse_matrix.cc162 void BlockSparseMatrix::ToDenseMatrix(Matrix* dense_matrix) const { function in class:ceres::internal::BlockSparseMatrix
H A Ddense_sparse_matrix.cc104 void DenseSparseMatrix::ToDenseMatrix(Matrix* dense_matrix) const { function in class:ceres::internal::DenseSparseMatrix
H A Dtriplet_sparse_matrix.cc182 void TripletSparseMatrix::ToDenseMatrix(Matrix* dense_matrix) const { function in class:ceres::internal::TripletSparseMatrix
H A Dcompressed_row_sparse_matrix.cc201 void CompressedRowSparseMatrix::ToDenseMatrix(Matrix* dense_matrix) const { function in class:ceres::internal::CompressedRowSparseMatrix
H A Dcompressed_row_sparse_matrix_test.cc208 TEST_F(CompressedRowSparseMatrixTest, ToDenseMatrix) {
212 tsm->ToDenseMatrix(&tsm_dense);
213 crsm->ToDenseMatrix(&crsm_dense);
275 matrix->ToDenseMatrix(&dense);
402 matrix.ToDenseMatrix(&dense_matrix);
405 transpose->ToDenseMatrix(&dense_transpose);
476 void ToDenseMatrix(const cs_di* matrix, Matrix* dense_matrix) { function in namespace:ceres::internal
554 ToDenseMatrix(expected_outer_product, &expected_matrix);
557 ToDenseMatrix(&actual_outer_product, &actual_matrix);

Completed in 207 milliseconds