Home
last modified time | relevance | path

Searched refs:rows_ (Results 1 – 5 of 5) sorted by relevance

/external/ceres-solver/internal/ceres/
Dcompressed_row_sparse_matrix.cc77 rows_.resize(num_rows + 1, 0); in CompressedRowSparseMatrix()
95 rows_.resize(num_rows_ + 1, 0); in CompressedRowSparseMatrix()
121 ++rows_[m.rows()[idx] + 1]; in CompressedRowSparseMatrix()
128 rows_[i] += rows_[i - 1]; in CompressedRowSparseMatrix()
140 rows_.resize(num_rows + 1); in CompressedRowSparseMatrix()
144 rows_[0] = 0; in CompressedRowSparseMatrix()
148 rows_[i + 1] = i + 1; in CompressedRowSparseMatrix()
167 for (int idx = rows_[r]; idx < rows_[r + 1]; ++idx) { in RightMultiply()
178 for (int idx = rows_[r]; idx < rows_[r + 1]; ++idx) { in LeftMultiply()
188 for (int idx = 0; idx < rows_[num_rows_]; ++idx) { in SquaredColumnNorm()
[all …]
Dtriplet_sparse_matrix.cc49 rows_(NULL), in TripletSparseMatrix()
62 rows_(NULL), in TripletSparseMatrix()
78 rows_(NULL), in TripletSparseMatrix()
98 if ((rows_[i] < 0) || (rows_[i] >= num_rows_) || in AllTripletsWithinBounds()
118 new_rows[i] = rows_[i]; in Reserve()
123 rows_.reset(new_rows); in Reserve()
142 rows_.reset(new int[max_num_nonzeros_]); in AllocateMemory()
149 rows_[i] = orig.rows_[i]; in CopyData()
157 y[rows_[i]] += values_[i]*x[cols_[i]]; in RightMultiply()
163 y[cols_[i]] += values_[i]*x[rows_[i]]; in LeftMultiply()
[all …]
Dcompressed_row_sparse_matrix.h91 virtual int num_nonzeros() const { return rows_[num_rows_]; } in num_nonzeros()
109 const int* rows() const { return &rows_[0]; } in rows()
110 int* mutable_rows() { return &rows_[0]; } in mutable_rows()
163 vector<int> rows_; variable
Dtriplet_sparse_matrix.h91 const int* rows() const { return rows_.get(); } in rows()
93 int* mutable_rows() { return rows_.get(); } in mutable_rows()
121 scoped_array<int> rows_; variable
/external/webrtc/src/system_wrappers/source/
Ddata_log.cc98 RowList rows_[2]; member in webrtc::LogTable
144 rows_(), in LogTable()
145 rows_history_(&rows_[0]), in LogTable()
146 rows_flush_(&rows_[1]), in LogTable()