Searched refs:Index (Results 1 - 25 of 966) sorted by relevance

1234567891011>>

/external/lzma/CS/7zip/Compress/LZMA/
H A DLzmaBase.cs17 public uint Index; field in struct:SevenZip.Compression.LZMA.Base.State
18 public void Init() { Index = 0; }
21 if (Index < 4) Index = 0;
22 else if (Index < 10) Index -= 3;
23 else Index -= 6;
25 public void UpdateMatch() { Index = (uint)(Index < 7 ? 7 : 10); }
26 public void UpdateRep() { Index
[all...]
/external/eigen/Eigen/src/SparseLU/
H A DSparseLU_Structs.h78 typedef typename IndexVector::Scalar Index; typedef in struct:Eigen::internal::LU_GlobalLU_t
85 Index nzlmax; // Current max size of lsub
86 Index nzlumax; // Current max size of lusup
90 Index nzumax; // Current max size of ucol
91 Index n; // Number of columns in the matrix
92 Index num_expansions;
96 template <typename Index>
98 Index panel_size; // a panel consists of at most <panel_size> consecutive columns
99 Index relax; // To control degree of relaxing supernodes. If the number of nodes (columns)
102 Index maxsupe
[all...]
H A DSparseLUImpl.h19 template <typename Scalar, typename Index>
24 typedef Matrix<Index,Dynamic,1> IndexVector;
27 typedef Ref<Matrix<Index,Dynamic,1> > BlockIndexVector;
29 typedef SparseMatrix<Scalar,ColMajor,Index> MatrixType;
33 Index expand(VectorType& vec, Index& length, Index nbElts, Index keep_prev, Index& num_expansions);
34 Index memIni
[all...]
H A DSparseLU_SupernodalMatrix.h37 typedef _Index Index; typedef in class:Eigen::internal::MappedSuperNodalMatrix
38 typedef Matrix<Index,Dynamic,1> IndexVector;
45 MappedSuperNodalMatrix(Index m, Index n, ScalarVector& nzval, IndexVector& nzval_colptr, IndexVector& rowind,
61 void setInfos(Index m, Index n, ScalarVector& nzval, IndexVector& nzval_colptr, IndexVector& rowind,
78 Index rows() { return m_row; }
83 Index cols() { return m_col; }
99 Index* colIndexPtr()
104 const Index* colIndexPt
[all...]
H A DSparseLU_column_dfs.h33 template <typename Scalar, typename Index> class SparseLUImpl;
42 typedef typename IndexVector::Scalar Index; typedef in struct:Eigen::internal::column_dfs_traits
43 column_dfs_traits(Index jcol, Index& jsuper, typename SparseLUImpl<Scalar, Index>::GlobalLU_t& glu, SparseLUImpl<Scalar, Index>& luImpl)
46 bool update_segrep(Index /*krep*/, Index /*jj*/)
50 void mem_expand(IndexVector& lsub, Index& nextl, Index chmar
[all...]
H A DSparseLU_Memory.h39 template<typename Index>
40 inline Index LUnumTempV(Index& m, Index& w, Index& t, Index& b)
45 template< typename Scalar, typename Index>
46 inline Index LUTempSpace(Index&m, Index
[all...]
H A DSparseLU_Utils.h20 template <typename Scalar, typename Index>
21 void SparseLUImpl<Scalar,Index>::countnz(const Index n, Index& nnzL, Index& nnzU, GlobalLU_t& glu)
25 Index nsuper = (glu.supno)(n);
26 Index jlen;
27 Index i, j, fsupc;
51 template <typename Scalar, typename Index>
52 void SparseLUImpl<Scalar,Index>
[all...]
/external/eigen/unsupported/Eigen/src/SparseExtra/
H A DDynamicSparseMatrix.h40 typedef _Index Index; typedef in struct:Eigen::internal::traits
75 Index m_innerSize;
76 std::vector<internal::CompressedStorage<Scalar,Index> > m_data;
80 inline Index rows() const { return IsRowMajor ? outerSize() : m_innerSize; }
81 inline Index cols() const { return IsRowMajor ? m_innerSize : outerSize(); }
82 inline Index innerSize() const { return m_innerSize; }
83 inline Index outerSize() const { return static_cast<Index>(m_data.size()); }
84 inline Index innerNonZeros(Index
[all...]
/external/eigen/blas/
H A DGeneralRank1Update.h16 template<typename Scalar, typename Index, int StorageOrder, bool ConjLhs, bool ConjRhs>
19 template<typename Scalar, typename Index, bool ConjLhs, bool ConjRhs>
20 struct general_rank1_update<Scalar,Index,ColMajor,ConjLhs,ConjRhs>
22 static void run(Index rows, Index cols, Scalar* mat, Index stride, const Scalar* u, const Scalar* v, Scalar alpha)
28 for (Index i=0; i<cols; ++i)
33 template<typename Scalar, typename Index, bool ConjLhs, bool ConjRhs>
34 struct general_rank1_update<Scalar,Index,RowMajor,ConjLhs,ConjRhs>
36 static void run(Index row
[all...]
/external/eigen/Eigen/src/Core/products/
H A DParallelizer.h74 template<typename Index> struct GemmParallelInfo
81 Index rhs_start;
82 Index rhs_length;
85 template<bool Condition, typename Functor, typename Index>
86 void parallelize_gemm(const Functor& func, Index rows, Index cols, bool transpose)
110 Index size = transpose ? cols : rows;
114 Index max_threads = std::max<Index>(1,size / 32);
117 Index thread
[all...]
H A DSelfadjointMatrixMatrix.h18 template<typename Scalar, typename Index, int Pack1, int Pack2, int StorageOrder>
22 void pack(Scalar* blockA, const const_blas_data_mapper<Scalar,Index,StorageOrder>& lhs, Index cols, Index i, Index& count)
25 for(Index k=0; k<i; k++)
26 for(Index w=0; w<BlockRows; w++)
29 Index h = 0;
30 for(Index k=i; k<i+BlockRows; k++)
32 for(Index
[all...]
H A DTriangularMatrixMatrix.h44 template <typename Scalar, typename Index,
51 template <typename Scalar, typename Index,
55 struct product_triangular_matrix_matrix<Scalar,Index,Mode,LhsIsTriangular,
60 Index rows, Index cols, Index depth,
61 const Scalar* lhs, Index lhsStride,
62 const Scalar* rhs, Index rhsStride,
63 Scalar* res, Index resStride,
66 product_triangular_matrix_matrix<Scalar, Index,
[all...]
H A DGeneralMatrixVector_MKL.h49 template<typename Index, typename LhsScalar, int LhsStorageOrder, bool ConjugateLhs, typename RhsScalar, bool ConjugateRhs>
51 general_matrix_vector_product<Index,LhsScalar,LhsStorageOrder,ConjugateLhs,RhsScalar,ConjugateRhs,BuiltIn> {};
54 template<typename Index, bool ConjugateLhs, bool ConjugateRhs> \
55 struct general_matrix_vector_product<Index,Scalar,ColMajor,ConjugateLhs,Scalar,ConjugateRhs,Specialized> { \
57 Index rows, Index cols, \
58 const Scalar* lhs, Index lhsStride, \
59 const Scalar* rhs, Index rhsIncr, \
60 Scalar* res, Index resIncr, Scalar alpha) \
63 general_matrix_vector_product<Index,Scala
[all...]
/external/eigen/unsupported/Eigen/src/Skyline/
H A DSkylineStorage.h24 typedef SparseIndex Index; typedef in class:Eigen::SkylineStorage
61 memcpy(m_upperProfile, other.m_upperProfile, m_upperProfileSize * sizeof (Index));
62 memcpy(m_lowerProfile, other.m_lowerProfile, m_lowerProfileSize * sizeof (Index));
87 void reserve(Index size, Index upperProfileSize, Index lowerProfileSize, Index upperSize, Index lowerSize) {
88 Index newAllocatedSize = size + upperSize + lowerSize;
98 void resize(Index diagSiz
[all...]
/external/eigen/Eigen/src/SparseCore/
H A DMappedSparseMatrix.h40 Index m_outerSize;
41 Index m_innerSize;
42 Index m_nnz;
43 Index* m_outerIndex;
44 Index* m_innerIndices;
49 inline Index rows() const { return IsRowMajor ? m_outerSize : m_innerSize; }
50 inline Index cols() const { return IsRowMajor ? m_innerSize : m_outerSize; }
51 inline Index innerSize() const { return m_innerSize; }
52 inline Index outerSize() const { return m_outerSize; }
61 inline const Index* innerIndexPt
[all...]
/external/eigen/Eigen/src/Core/
H A DNestByValue.h45 inline Index rows() const { return m_expression.rows(); }
46 inline Index cols() const { return m_expression.cols(); }
47 inline Index outerStride() const { return m_expression.outerStride(); }
48 inline Index innerStride() const { return m_expression.innerStride(); }
50 inline const CoeffReturnType coeff(Index row, Index col) const
55 inline Scalar& coeffRef(Index row, Index col)
60 inline const CoeffReturnType coeff(Index index) const
65 inline Scalar& coeffRef(Index inde
[all...]
H A DArrayWrapper.h58 inline Index rows() const { return m_expression.rows(); }
59 inline Index cols() const { return m_expression.cols(); }
60 inline Index outerStride() const { return m_expression.outerStride(); }
61 inline Index innerStride() const { return m_expression.innerStride(); }
66 inline CoeffReturnType coeff(Index rowId, Index colId) const
71 inline Scalar& coeffRef(Index rowId, Index colId)
76 inline const Scalar& coeffRef(Index rowId, Index colI
[all...]
H A DStride.h47 typedef DenseIndex Index; typedef in class:Eigen::Stride
61 Stride(Index outerStride, Index innerStride)
73 inline Index outer() const { return m_outer.value(); }
75 inline Index inner() const { return m_inner.value(); }
78 internal::variable_if_dynamic<Index, OuterStrideAtCompileTime> m_outer;
79 internal::variable_if_dynamic<Index, InnerStrideAtCompileTime> m_inner;
89 typedef DenseIndex Index; typedef in class:Eigen::InnerStride
91 InnerStride(Index v) : Base(0, v) {}
101 typedef DenseIndex Index; typedef in class:Eigen::OuterStride
[all...]
H A DFlagged.h53 inline Index rows() const { return m_matrix.rows(); }
54 inline Index cols() const { return m_matrix.cols(); }
55 inline Index outerStride() const { return m_matrix.outerStride(); }
56 inline Index innerStride() const { return m_matrix.innerStride(); }
58 inline CoeffReturnType coeff(Index row, Index col) const
63 inline CoeffReturnType coeff(Index index) const
68 inline const Scalar& coeffRef(Index row, Index col) const
73 inline const Scalar& coeffRef(Index inde
[all...]
/external/llvm/lib/Target/MSP430/
H A DMSP430MachineFunctionInfo.h46 void setRAIndex(int Index) { ReturnAddrIndex = Index; } argument
49 void setVarArgsFrameIndex(int Index) { VarArgsFrameIndex = Index; } argument
/external/clang/bindings/python/tests/cindex/
H A Dtest_index.py7 index = Index.create()
9 # FIXME: test Index.read
12 index = Index.create()
13 assert isinstance(index, Index)
/external/eigen/Eigen/src/OrderingMethods/
H A DEigen_Colamd.h138 template <typename Index>
141 Index start ; /* index for A of first row in this column, or DEAD */
143 Index length ; /* number of rows in this column */
146 Index thickness ; /* number of original columns represented by this */
148 Index parent ; /* parent in parent tree super-column structure, if */
153 Index score ; /* the score used to maintain heap, if col is alive */
154 Index order ; /* pivot ordering of this column, if col is dead */
158 Index headhash ; /* head of a hash bucket, if col is at the head of */
160 Index hash ; /* hash value, if col is not in a degree list */
161 Index pre
[all...]
H A DOrdering.h47 * \tparam Index The type of indices of the matrix
50 template <typename Index>
54 typedef PermutationMatrix<Dynamic, Dynamic, Index> PermutationType;
63 SparseMatrix<typename MatrixType::Scalar, ColMajor, Index> symm;
75 SparseMatrix<typename SrcType::Scalar, ColMajor, Index> C; C = mat;
91 * \tparam Index The type of indices of the matrix
93 template <typename Index>
97 typedef PermutationMatrix<Dynamic, Dynamic, Index> PermutationType;
114 template<typename Index>
118 typedef PermutationMatrix<Dynamic, Dynamic, Index> PermutationTyp
[all...]
/external/eigen/test/
H A Dbandmatrix.cpp14 typedef typename MatrixType::Index Index; typedef
19 Index rows = _m.rows();
20 Index cols = _m.cols();
21 Index supers = _m.supers();
22 Index subs = _m.subs();
49 Index d = (std::min)(rows,cols);
50 Index a = std::max<Index>(0,cols-d-supers);
51 Index
65 typedef BandMatrix<float>::Index Index; typedef
[all...]
/external/eigen/Eigen/src/plugins/
H A DBlockMethods.h54 * \sa class Block, block(Index,Index)
56 inline Block<Derived> block(Index startRow, Index startCol, Index blockRows, Index blockCols)
61 /** This is the const version of block(Index,Index,Index,Index)
[all...]

Completed in 623 milliseconds

1234567891011>>