Searched defs:Index (Results 276 - 300 of 515) sorted by relevance

<<11121314151617181920>>

/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/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_emulate_branches.c37 unsigned int Index:RC_REGISTER_INDEX_BITS; member in struct:proxy_info
77 inst_mov->U.I.DstReg.Index = rc_find_free_temporary(s->C);
82 inst->U.I.SrcReg[0].Index = inst_mov->U.I.DstReg.Index;
127 proxy->Index = rc_find_free_temporary(sap->S->C);
139 *pindex = proxy->Index;
167 inst_mov->U.I.DstReg.Index = proxies->Temporary[index].Index;
170 inst_mov->U.I.SrcReg[0].Index = index;
186 inst_cmp->U.I.DstReg.Index
[all...]
H A Dradeon_emulate_loops.c51 int Index; member in struct:count_inst
93 value->Src->Index != index ||
100 inst->U.I.SrcReg[0].Index)){
106 inst->U.I.SrcReg[0].Index,
122 count_inst->Index != index ||
141 inst->U.I.SrcReg[0].Index == count_inst->Index &&
145 inst->U.I.SrcReg[1].Index == count_inst->Index &&
155 inst->U.I.SrcReg[amnt_src_index].Index)){
[all...]
H A Dradeon_program.h45 signed int Index:(RC_REGISTER_INDEX_BITS+1); member in struct:rc_src_register
59 unsigned int Index:RC_REGISTER_INDEX_BITS; member in struct:rc_dst_register
/external/mesa3d/src/gallium/drivers/r300/compiler/tests/
H A Drc_test_helpers.c73 struct match_info Index; member in struct:src_tokens
112 tokens.Index.String = src_str + matches[4].rm_so;
113 tokens.Index.Length = match_length(matches, 4);
138 /* Index */
140 src_reg->Index = strtol(tokens.Index.String, NULL, 10);
193 src_reg->File, src_reg->Index, src_reg->Swizzle,
202 struct match_info Index; member in struct:dst_tokens
234 tokens.Index.String = dst_str + matches[2].rm_so;
235 tokens.Index
[all...]
/external/mesa3d/src/gallium/drivers/radeon/
H A DSIISelLowering.cpp364 uint64_t Index = BasePtr->getZExtValue(); local
365 assert(Index % TypeDwordWidth == 0 && "USER_SGPR not properly aligned");
366 unsigned SGPRIndex = Index / TypeDwordWidth;
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DBufferedTreeNodeStream.cs348 int i = Index;
392 lastMarker = Index;
400 public virtual int Index { property in class:Antlr.Runtime.Tree.BufferedTreeNodeStream
/external/chromium_org/ui/app_list/views/
H A Dapps_grid_view.h228 struct Index { struct in class:app_list::AppsGridView
229 Index() : page(-1), slot(-1) {} function in struct:app_list::AppsGridView::Index
230 Index(int page, int slot) : page(page), slot(slot) {} function in struct:app_list::AppsGridView::Index
232 bool operator==(const Index& other) const {
235 bool operator!=(const Index& other) const {
238 bool operator<(const Index& other) const {
264 // is the index of the item in AppListModel. The visual index is the Index
266 Index GetIndexFromModelIndex(int model_index) const;
267 int GetModelIndexFromIndex(const Index& index) const;
269 void SetSelectedItemByIndex(const Index
[all...]
/external/clang/lib/CodeGen/
H A DCGObjCRuntime.cpp52 unsigned Index = 0; local
58 ++Index;
60 assert(Index < RL->getFieldCount() && "Ivar is not inside record layout!");
62 return RL->getFieldOffset(Index);
/external/clang/lib/Lex/
H A DPreprocessingRecord.cpp330 unsigned Index = -PPID.ID - 1; local
331 assert(Index < LoadedPreprocessedEntities.size() &&
333 return getLoadedPreprocessedEntity(Index);
338 unsigned Index = PPID.ID - 1;
339 assert(Index < PreprocessedEntities.size() &&
341 return PreprocessedEntities[Index];
346 PreprocessingRecord::getLoadedPreprocessedEntity(unsigned Index) {
347 assert(Index < LoadedPreprocessedEntities.size() &&
350 PreprocessedEntity *&Entity = LoadedPreprocessedEntities[Index];
352 Entity = ExternalSource->ReadPreprocessedEntity(Index);
[all...]
/external/clang/lib/Serialization/
H A DModuleManager.cpp82 New->Index = Chain.size();
217 void ModuleManager::setGlobalIndex(GlobalModuleIndex *Index) { argument
218 GlobalIndex = Index;
292 unsigned &NumUnusedEdges = UnusedIncomingEdges[(*M)->Index];
315 State->VisitNumber[M->Index] = VisitNumber;
322 if (State->VisitNumber[CurrentModule->Index] == VisitNumber)
326 assert(State->VisitNumber[CurrentModule->Index] == VisitNumber - 1);
327 State->VisitNumber[CurrentModule->Index] = VisitNumber;
342 if (State->VisitNumber[(*M)->Index] != VisitNumber) {
344 State->VisitNumber[(*M)->Index]
[all...]
/external/clang/tools/libclang/
H A DCIndexDiagnostic.cpp223 CXDiagnostic clang_getDiagnostic(CXTranslationUnit Unit, unsigned Index) { argument
234 if (Index >= Diags->getNumDiagnostics())
237 return Diags->getDiagnostic(Index);
463 unsigned Index) {
465 if (Index < D->getNumDiagnostics())
466 return D->getDiagnostic(Index);
462 clang_getDiagnosticInSet(CXDiagnosticSet Diags, unsigned Index) argument
/external/eigen/Eigen/src/Cholesky/
H A DLDLT.h62 typedef typename MatrixType::Index Index; typedef in class:Eigen::LDLT
88 LDLT(Index size)
99 * \sa LDLT(Index size)
223 inline Index rows() const { return m_matrix.rows(); }
224 inline Index cols() const { return m_matrix.cols(); }
264 typedef typename MatrixType::Index Index; typedef
266 const Index size = mat.rows();
277 for (Index
354 typedef typename MatrixType::Index Index; typedef
[all...]
H A DLLT.h62 typedef typename MatrixType::Index Index; typedef in class:Eigen::LLT
86 LLT(Index size) : m_matrix(size, size),
170 inline Index rows() const { return m_matrix.rows(); }
171 inline Index cols() const { return m_matrix.cols(); }
191 static typename MatrixType::Index llt_rank_update_lower(MatrixType& mat, const VectorType& vec, const typename MatrixType::RealScalar& sigma)
196 typedef typename MatrixType::Index Index; typedef
203 Index n = mat.cols();
215 for(Index
268 typedef typename MatrixType::Index Index; typedef
294 typedef typename MatrixType::Index Index; typedef
[all...]
/external/eigen/Eigen/src/CholmodSupport/
H A DCholmodSupport.h87 eigen_assert(false && "Index type not supported yet");
141 template<typename Scalar, int Flags, typename Index>
142 MappedSparseMatrix<Scalar,Flags,Index> viewAsEigen(cholmod_sparse& cm)
144 return MappedSparseMatrix<Scalar,Flags,Index>
145 (cm.nrow, cm.ncol, static_cast<Index*>(cm.p)[cm.ncol],
146 static_cast<Index*>(cm.p), static_cast<Index*>(cm.i),static_cast<Scalar*>(cm.x) );
168 typedef typename MatrixType::Index Index; typedef in class:Eigen::CholmodBase
194 inline Index col
[all...]
/external/eigen/Eigen/src/Core/
H A DBlock.h26 * type of DenseBase::block(Index,Index,Index,Index) and DenseBase::block<int,int>(Index,Index) and
45 * \sa DenseBase::block(Index,Index,Index,Index), DenseBas
152 typedef typename XprType::Index Index; typedef in class:Eigen::BlockImpl
[all...]
H A DPermutationMatrix.h70 typedef typename Traits::Index Index; typedef in class:Eigen::PermutationBase
73 typedef PermutationMatrix<IndicesType::SizeAtCompileTime,IndicesType::MaxSizeAtCompileTime,Index>
91 for(Index k=size()-1; k>=0; --k)
108 inline Index rows() const { return Index(indices().size()); }
111 inline Index cols() const { return Index(indices().size()); }
114 inline Index size() const { return Index(indice
277 typedef IndexType Index; typedef in struct:Eigen::internal::traits
391 typedef IndexType Index; typedef in struct:Eigen::internal::traits
406 typedef typename IndicesType::Scalar Index; typedef in class:Eigen::Map
469 typedef typename _IndicesType::Scalar Index; typedef in struct:Eigen::internal::traits
544 typedef typename MatrixType::Index Index; typedef in struct:Eigen::internal::permut_matrix_product_retval
[all...]
H A DProductBase.h30 typedef typename promote_index_type<typename traits<Lhs>::Index,
31 typename traits<Rhs>::Index>::type Index; typedef in struct:Eigen::internal::traits
98 inline Index rows() const { return m_lhs.rows(); }
99 inline Index cols() const { return m_rhs.cols(); }
127 template<int Index>
128 const Diagonal<FullyLazyCoeffBaseProductType,Index> diagonal() const
131 const Diagonal<FullyLazyCoeffBaseProductType,Dynamic> diagonal(Index index) const
135 typename Base::CoeffReturnType coeff(Index row, Index co
[all...]
/external/eigen/Eigen/src/Core/products/
H A DGeneralMatrixMatrixTriangular.h15 template<typename Scalar, typename Index, int StorageOrder, int UpLo, bool ConjLhs, bool ConjRhs>
28 template<typename LhsScalar, typename RhsScalar, typename Index, int mr, int nr, bool ConjLhs, bool ConjRhs, int UpLo>
32 template <typename Index,
39 template <typename Index, typename LhsScalar, int LhsStorageOrder, bool ConjugateLhs,
41 struct general_matrix_matrix_triangular_product<Index,LhsScalar,LhsStorageOrder,ConjugateLhs,RhsScalar,RhsStorageOrder,ConjugateRhs,RowMajor,UpLo,Version>
44 static EIGEN_STRONG_INLINE void run(Index size, Index depth,const LhsScalar* lhs, Index lhsStride,
45 const RhsScalar* rhs, Index rhsStride, ResScalar* res, Index resStrid
196 typedef typename MatrixType::Index Index; typedef
241 typedef typename MatrixType::Index Index; typedef
[all...]
H A DTriangularMatrixVector.h17 template<typename Index, int Mode, typename LhsScalar, bool ConjLhs, typename RhsScalar, bool ConjRhs, int StorageOrder, int Version=Specialized>
20 template<typename Index, int Mode, typename LhsScalar, bool ConjLhs, typename RhsScalar, bool ConjRhs, int Version>
21 struct triangular_matrix_vector_product<Index,Mode,LhsScalar,ConjLhs,RhsScalar,ConjRhs,ColMajor,Version>
29 static EIGEN_DONT_INLINE void run(Index _rows, Index _cols, const LhsScalar* _lhs, Index lhsStride,
30 const RhsScalar* _rhs, Index rhsIncr, ResScalar* _res, Index resIncr, const ResScalar& alpha);
33 template<typename Index, int Mode, typename LhsScalar, bool ConjLhs, typename RhsScalar, bool ConjRhs, int Version>
34 EIGEN_DONT_INLINE void triangular_matrix_vector_product<Index,Mod
221 typedef typename ProductType::Index Index; typedef
300 typedef typename ProductType::Index Index; typedef
[all...]
/external/eigen/Eigen/src/Eigenvalues/
H A DRealSchur.h67 typedef typename MatrixType::Index Index; typedef in class:Eigen::RealSchur
83 RealSchur(Index size = RowsAtCompileTime==Dynamic ? 1 : RowsAtCompileTime)
166 * \sa compute(const MatrixType&, bool, Index)
204 RealSchur& setMaxIterations(Index maxIters)
211 Index getMaxIterations()
232 Index m_maxIters;
237 Index findSmallSubdiagEntry(Index iu, const Scalar& norm);
238 void splitOffTwoRows(Index i
[all...]
/external/eigen/Eigen/src/Geometry/
H A DAlignedBox.h35 typedef DenseIndex Index; typedef in class:Eigen::AlignedBox
63 inline explicit AlignedBox(Index _dim) : m_min(_dim), m_max(_dim)
82 inline Index dim() const { return AmbientDimAtCompileTime==Dynamic ? m_min.size() : Index(AmbientDimAtCompileTime); }
148 Index mult = 1;
149 for(Index d=0; d<dim(); ++d)
163 for(Index d=0; d<dim(); ++d)
302 for (Index k=0; k<dim(); ++k)
323 for (Index k=0; k<dim(); ++k)
/external/eigen/Eigen/src/IterativeLinearSolvers/
H A DIncompleteLUT.h27 template <typename VectorV, typename VectorI, typename Index>
28 Index QuickSplit(VectorV &row, VectorI &ind, Index ncut)
33 Index mid;
34 Index n = row.size(); /* length of the vector */
35 Index first, last ;
45 for (Index j = first + 1; j <= last; j++) {
103 typedef typename FactorType::Index Index; typedef in class:Eigen::IncompleteLUT
122 Index row
[all...]
/external/eigen/Eigen/src/LU/
H A DFullPivLU.h60 typedef typename MatrixType::Index Index; typedef in class:Eigen::FullPivLU
61 typedef typename internal::plain_row_type<MatrixType, Index>::type IntRowVectorType;
62 typedef typename internal::plain_col_type<MatrixType, Index>::type IntColVectorType;
80 FullPivLU(Index rows, Index cols);
117 inline Index nonzeroPivots() const
295 inline Index rank() const
300 Index result = 0;
301 for(Index
[all...]
/external/eigen/Eigen/src/PaStiXSupport/
H A DPaStiXSupport.h38 typedef typename _MatrixType::Index Index; typedef in struct:Eigen::internal::pastix_traits
47 typedef typename _MatrixType::Index Index; typedef in struct:Eigen::internal::pastix_traits
56 typedef typename _MatrixType::Index Index; typedef in struct:Eigen::internal::pastix_traits
127 typedef typename MatrixType::Index Index; typedef in class:Eigen::PastixBase
174 Array<Index,IPARM_SIZE,1>& iparm()
206 inline Index col
437 typedef typename MatrixType::Index Index; typedef in class:Eigen::PastixLU
[all...]

Completed in 563 milliseconds

<<11121314151617181920>>