Searched refs:Dense (Results 1 – 25 of 28) sorted by relevance
12
/external/llvm/include/llvm/ADT/ |
D | SparseMultiSet.h | 115 DenseT Dense; variable 144 return Dense[D.Prev].isTail(); in isHead() 152 return &Dense[N.Prev] == &N; in isSingleton() 159 Dense.push_back(SMSNode(V, Prev, Next)); in addValue() 160 return Dense.size() - 1; in addValue() 165 unsigned NextFree = Dense[Idx].Next; in addValue() 166 assert(Dense[Idx].isTombstone() && "Non-tombstone free?"); in addValue() 168 Dense[Idx] = SMSNode(V, Prev, Next); in addValue() 176 Dense[Idx].Prev = SMSNode::INVALID; in makeTombstone() 177 Dense[Idx].Next = FreelistIdx; in makeTombstone() [all …]
|
D | SparseSet.h | 128 DenseT Dense; 174 const_iterator begin() const { return Dense.begin(); } 175 const_iterator end() const { return Dense.end(); } 176 iterator begin() { return Dense.begin(); } 177 iterator end() { return Dense.end(); } 183 bool empty() const { return Dense.empty(); } 190 size_type size() const { return Dense.size(); } 196 Dense.clear(); 208 const unsigned FoundIdx = ValIndexOf(Dense[i]); 255 Dense.push_back(Val); [all …]
|
/external/eigen/Eigen/ |
D | Eigen | 1 #include "Dense"
|
/external/eigen/doc/snippets/ |
D | compile_snippet.cpp.in | 1 #include <Eigen/Dense>
|
/external/eigen/Eigen/src/SparseCore/ |
D | SparseCwiseBinaryOp.h | 34 template<> struct promote_storage_type<Dense,Sparse> 37 template<> struct promote_storage_type<Sparse,Dense> 214 …rse_cwise_binary_op_inner_iterator_selector<scalar_product_op<T>, Lhs, Rhs, Derived, Sparse, Dense> 255 class sparse_cwise_binary_op_inner_iterator_selector<scalar_product_op<T>, Lhs, Rhs, Derived, Dense…
|
D | SparseDenseProduct.h | 133 static Scalar get(const _RhsNested &rhs, Index outer, Dense = Dense()) 156 typedef Dense StorageKind; 283 typedef Dense StorageKind;
|
D | SparseSelfAdjointView.h | 220 typedef Dense StorageKind;
|
/external/eigen/doc/ |
D | Manual.dox | 41 /** \defgroup DenseMatrixManipulation_chapter Dense matrix and array manipulation */ 92 /** \defgroup DenseLinearSolvers_chapter Dense linear problems and decompositions */
|
D | Overview.dox | 12 - \link QuickRefPage [QuickRef] Dense matrix and array manipulations \endlink
|
D | TutorialMapClass.dox | 60 …his does \em not happen automatically: a Map type is not identical to its Dense equivalent. See \…
|
D | QuickStartGuide.dox | 42 The \c Eigen/Dense header file defines all member functions for the MatrixXd type and related types…
|
D | QuickReference.dox | 12 … header file which has to be included in order to use the module. The \c %Dense and \c Eigen heade… 25 <tr><td></td><td>\code#include <Eigen/Dense>\endcode</td><td>Includes Core, Geometry, LU, Cholesky,… 26 <tr class="alt"><td></td><td>\code#include <Eigen/Eigen>\endcode</td><td>Includes %Dense and %Spars…
|
D | AsciiQuickReference.txt | 4 #include <Eigen/Dense>
|
/external/eigen/Eigen/src/Core/util/ |
D | XprHelper.h | 172 template<typename T> struct plain_matrix_type<T,Dense> 205 template<typename T> struct eval<T,Dense> 220 struct eval<Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>, Dense> 226 struct eval<Array<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>, Dense>
|
D | Constants.h | 428 struct Dense {}; struct
|
/external/eigen/Eigen/src/Core/ |
D | CwiseUnaryOp.h | 92 class CwiseUnaryOpImpl<UnaryOp,XprType,Dense>
|
D | Select.h | 36 typedef Dense StorageKind;
|
D | CwiseUnaryView.h | 92 class CwiseUnaryViewImpl<ViewOp,MatrixType,Dense>
|
D | CwiseBinaryOp.h | 163 class CwiseBinaryOpImpl<BinaryOp, Lhs, Rhs, Dense>
|
D | Matrix.h | 109 typedef Dense StorageKind;
|
D | DiagonalMatrix.h | 127 typedef Dense StorageKind;
|
D | Transpose.h | 100 template<typename MatrixType> class TransposeImpl<MatrixType,Dense>
|
D | BandMatrix.h | 181 typedef Dense StorageKind;
|
D | Block.h | 148 class BlockImpl<XprType, BlockRows, BlockCols, InnerPanel, Dense>
|
/external/ceres-solver/scripts/ |
D | ceres-solver.spec | 44 - Dense QR and Cholesky factorization (using Eigen) for small problems
|
12