/external/ceres-solver/include/ceres/ |
crs_matrix.h | 43 CRSMatrix() : num_rows(0), num_cols(0) {} 46 int num_cols; member in struct:ceres::CRSMatrix
|
/external/ceres-solver/internal/ceres/ |
block_jacobi_preconditioner.h | 64 virtual int num_cols() const { return num_rows_; } function in class:ceres::internal::BlockJacobiPreconditioner
|
evaluator_test_utils.h | 40 int num_cols; member in struct:ceres::internal::ExpectedEvaluation
|
visibility_test.cc | 59 int num_cols = 6; local 102 bs.cols.resize(num_cols); 106 ASSERT_EQ(visibility.size(), num_cols - num_eliminate_blocks); 139 int num_cols = 6; local 178 bs.cols.resize(num_cols); 182 ASSERT_EQ(visibility.size(), num_cols - num_eliminate_blocks);
|
block_random_access_dense_matrix.h | 48 // num_rows x num_cols. 78 // structure, num_rows() = num_cols(). 80 virtual int num_cols() const { return num_rows_; } function in class:ceres::internal::BlockRandomAccessDenseMatrix
|
block_random_access_diagonal_matrix.h | 73 // Since the matrix is square, num_rows() == num_cols(). 75 virtual int num_cols() const { return tsm_->num_cols(); } function in class:ceres::internal::BlockRandomAccessDiagonalMatrix
|
block_random_access_sparse_matrix.h | 78 // Since the matrix is square, num_rows() == num_cols(). 80 virtual int num_cols() const { return tsm_->num_cols(); } function in class:ceres::internal::BlockRandomAccessSparseMatrix
|
block_sparse_matrix.h | 79 virtual int num_cols() const { return num_cols_; } function in class:ceres::internal::BlockSparseMatrix
|
cgnr_linear_operator.h | 98 int n = A_.num_cols(); 108 virtual int num_rows() const { return A_.num_cols(); } 109 virtual int num_cols() const { return A_.num_cols(); } function in class:ceres::internal::CgnrLinearOperator
|
dense_normal_cholesky_solver.cc | 72 const int num_cols = A->num_cols(); local 75 Matrix lhs(num_cols, num_cols); 91 ConstVectorRef D(per_solve_options.D, num_cols); 110 VectorRef(x, num_cols) = llt.solve(rhs); 128 const int num_cols = A->num_cols(); local 129 Matrix lhs(num_cols, num_cols); [all...] |
dense_qr_solver.cc | 72 const int num_cols = A->num_cols(); local 115 VectorRef(x, num_cols) = rhs_.head(num_cols); 130 const int num_cols = A->num_cols(); local 140 num_rows + ((per_solve_options.D != NULL) ? num_cols : 0); 149 VectorRef(x, num_cols) = A->matrix().householderQr().solve(rhs_);
|
sparse_normal_cholesky_solver.cc | 84 const int num_cols = A->num_cols(); local 85 VectorRef(x, num_cols).setZero(); 97 per_solve_options.D, num_cols)); 119 A->DeleteRows(num_cols); 327 const int num_cols = A->num_cols(); 362 cholmod_dense* rhs = ss_.CreateDenseVector(rhs_and_solution, num_cols, num_cols); 368 memcpy(rhs_and_solution, solution->x, num_cols * sizeof(*rhs_and_solution)) [all...] |
block_random_access_diagonal_matrix.cc | 52 int num_cols = 0; local 56 col_layout.push_back(num_cols); 57 num_cols += blocks_[i]; 61 VLOG(1) << "Matrix Size [" << num_cols 62 << "," << num_cols 65 tsm_.reset(new TripletSparseMatrix(num_cols, num_cols, num_nonzeros));
|
block_random_access_sparse_matrix.cc | 56 int num_cols = 0; local 59 col_layout.push_back(num_cols); 60 num_cols += blocks_[i]; 75 VLOG(1) << "Matrix Size [" << num_cols 76 << "," << num_cols 79 tsm_.reset(new TripletSparseMatrix(num_cols, num_cols, num_nonzeros));
|
conjugate_gradients_solver.cc | 74 CHECK_EQ(A->num_rows(), A->num_cols()); 81 const int num_cols = A->num_cols(); local 82 VectorRef xref(x, num_cols); 83 ConstVectorRef bref(b, num_cols); 93 Vector r(num_cols); 94 Vector p(num_cols); 95 Vector z(num_cols); 96 Vector tmp(num_cols);
|
dense_sparse_matrix_test.cc | 50 EXPECT_EQ(a->num_cols(), b->num_cols()); 53 int num_cols = a->num_cols(); local 55 for (int i = 0; i < num_cols; ++i) { 56 Vector x = Vector::Zero(num_cols); 81 num_cols = tsm->num_cols(); 85 int num_cols; member in class:ceres::internal::DenseSparseMatrixTest 96 Vector a(num_cols); [all...] |
implicit_schur_complement.cc | 127 ConstVectorRef Dref(D_ + A_->num_cols_e(), num_cols()); 128 VectorRef(y, num_cols()) = 130 ConstVectorRef(x, num_cols()).array()).matrix(); 132 VectorRef(y, num_cols()).setZero(); 171 const int num_cols = A_->num_cols(); local 186 VectorRef(y, num_cols).setZero();
|
low_rank_inverse_hessian.h | 92 virtual int num_cols() const { return num_parameters_; } function in class:ceres::internal::LowRankInverseHessian
|
partitioned_matrix_view.h | 106 virtual int num_cols() const = 0; 135 virtual int num_cols() const { return matrix_.num_cols(); } function in class:ceres::internal::PartitionedMatrixView
|
schur_complement_solver_test.cc | 58 num_cols = A->num_cols(); 62 x.reset(new double[num_cols]); 63 sol.reset(new double[num_cols]); 64 sol_d.reset(new double[num_cols]); 72 A->num_cols(), 116 for (int i = 0; i < num_cols; ++i) { 120 for (int i = 0; i < num_cols; ++i) { 127 int num_cols; member in class:ceres::internal::SchurComplementSolverTest
|
compressed_row_sparse_matrix.h | 63 // num_rows, num_cols and max_num_nonzeros. 71 int num_cols, 90 virtual int num_cols() const { return num_cols_; } function in class:ceres::internal::CompressedRowSparseMatrix 123 void set_num_cols(const int num_cols) { num_cols_ = num_cols; }
|
dense_sparse_matrix.cc | 42 DenseSparseMatrix::DenseSparseMatrix(int num_rows, int num_cols) 45 m_.resize(num_rows, num_cols); 50 int num_cols, 56 m_.resize(num_rows + num_cols, num_cols); 58 m_.resize(num_rows, num_cols); 64 : m_(Eigen::MatrixXd::Zero(m.num_rows(), m.num_cols())), 88 VectorRef(y, num_rows()) += matrix() * ConstVectorRef(x, num_cols()); 92 VectorRef(y, num_cols()) += 97 VectorRef(x, num_cols()) = m_.colwise().squaredNorm() 136 int DenseSparseMatrix::num_cols() const { function in class:ceres::internal::DenseSparseMatrix [all...] |
implicit_schur_complement.h | 131 virtual int num_cols() const { return A_->num_cols_f(); } function in class:ceres::internal::ImplicitSchurComplement
|
/external/libjpeg-turbo/ |
jccolext.c | 41 JDIMENSION num_cols = cinfo->image_width; local 49 for (col = 0; col < num_cols; col++) { 98 JDIMENSION num_cols = cinfo->image_width; local 104 for (col = 0; col < num_cols; col++) { 132 JDIMENSION num_cols = cinfo->image_width; local 140 for (col = 0; col < num_cols; col++) {
|
jdcolext.c | 39 JDIMENSION num_cols = cinfo->output_width; local 54 for (col = 0; col < num_cols; col++) { 89 JDIMENSION num_cols = cinfo->output_width; local 94 for (col = 0; col < num_cols; col++) { 121 JDIMENSION num_cols = cinfo->output_width; local 129 for (col = 0; col < num_cols; col++) {
|