Home
last modified time | relevance | path

Searched refs:IndexType (Results 1 – 25 of 58) sorted by relevance

123

/external/eigen/Eigen/src/OrderingMethods/
DEigen_Colamd.h131 template <typename IndexType>
134 IndexType start ; /* index for A of first row in this column, or DEAD */
136 IndexType length ; /* number of rows in this column */
139 IndexType thickness ; /* number of original columns represented by this */
141 IndexType parent ; /* parent in parent tree super-column structure, if */
146 IndexType score ; /* the score used to maintain heap, if col is alive */
147 IndexType order ; /* pivot ordering of this column, if col is dead */
151 IndexType headhash ; /* head of a hash bucket, if col is at the head of */
153 IndexType hash ; /* hash value, if col is not in a degree list */
154 IndexType prev ; /* previous column in degree list, if col is in a */
[all …]
/external/llvm/lib/Target/Hexagon/
DHexagonBlockRanges.h45 class IndexType {
53 static bool isInstr(IndexType X) { return X.Index >= First; } in isInstr()
55 IndexType() : Index(None) {} in IndexType() function
56 IndexType(unsigned Idx) : Index(Idx) {} in IndexType() function
59 bool operator== (IndexType Idx) const;
61 bool operator!= (IndexType Idx) const;
62 IndexType operator++ ();
64 bool operator< (IndexType Idx) const;
65 bool operator<= (IndexType Idx) const;
68 bool operator> (IndexType Idx) const;
[all …]
DHexagonBlockRanges.cpp32 IndexType S = start(), E = end(), AS = A.start(), AE = A.end(); in overlaps()
47 IndexType E = (end() != IndexType::None) ? end() : start(); in contains()
48 IndexType AE = (A.end() != IndexType::None) ? A.end() : A.start(); in contains()
59 IndexType AS = A.start(), AE = A.end(); in merge()
60 if (AS < start() || start() == IndexType::None) in merge()
62 if (end() < AE || end() == IndexType::None) { in merge()
116 IndexType AS = A.start(), AE = A.end(); in addsub()
117 IndexType BS = B.start(), BE = B.end(); in addsub()
121 if (AE == IndexType::None) in addsub()
127 assert(AE != IndexType::None); in addsub()
[all …]
DHexagonFrameLowering.cpp1871 typedef HexagonBlockRanges::IndexType IndexType; in optimizeSpillSlots() typedef
1918 std::map<int,IndexType> LastStore, LastLoad; in optimizeSpillSlots()
1990 IndexType Index = IndexMap.getIndex(&In); in optimizeSpillSlots()
1992 if (LastStore[FI] == IndexType::None) in optimizeSpillSlots()
1993 LastStore[FI] = IndexType::Entry; in optimizeSpillSlots()
1997 if (LastStore[FI] != IndexType::None) in optimizeSpillSlots()
1999 else if (LastLoad[FI] != IndexType::None) in optimizeSpillSlots()
2000 RL.add(IndexType::Entry, LastLoad[FI], false, false); in optimizeSpillSlots()
2001 LastLoad[FI] = IndexType::None; in optimizeSpillSlots()
2010 IndexType LL = I.second; in optimizeSpillSlots()
[all …]
/external/eigen/Eigen/src/Core/functors/
DNullaryFunctors.h33 template<typename IndexType>
34 …EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Scalar operator() (IndexType row, IndexType col) const…
50 template<typename IndexType>
51 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Scalar operator() (IndexType i) const {
59 template<typename IndexType>
60 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Packet packetOp(IndexType i) const
99 template<typename IndexType>
101 const Scalar operator() (IndexType i) const
135 template<typename IndexType>
136 …EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Scalar operator() (IndexType i) const { return impl(i)…
[all …]
/external/eigen/Eigen/src/PardisoSupport/
DPardisoSupport.h43 template<typename IndexType>
46 …static IndexType run( _MKL_DSS_HANDLE_t pt, IndexType maxfct, IndexType mnum, IndexType type, Inde… in run()
47IndexType *ia, IndexType *ja, IndexType *perm, IndexType nrhs, IndexType *iparm, IndexType msglvl,… in run()
49 IndexType error = 0; in run()
57 typedef long long int IndexType;
58 …static IndexType run( _MKL_DSS_HANDLE_t pt, IndexType maxfct, IndexType mnum, IndexType type, Inde…
59IndexType *ia, IndexType *ja, IndexType *perm, IndexType nrhs, IndexType *iparm, IndexType msglvl,…
61 IndexType error = 0;
/external/eigen/Eigen/src/Core/
DVisitor.h204 template<typename IndexType>
207 DenseBase<Derived>::minCoeff(IndexType* rowId, IndexType* colId) const
222 template<typename IndexType>
225 DenseBase<Derived>::minCoeff(IndexType* index) const
230 *index = IndexType((RowsAtCompileTime==1) ? minVisitor.col : minVisitor.row);
241 template<typename IndexType>
244 DenseBase<Derived>::maxCoeff(IndexType* rowPtr, IndexType* colPtr) const
259 template<typename IndexType>
262 DenseBase<Derived>::maxCoeff(IndexType* index) const
DCoreEvaluators.h346 template <typename IndexType>
347 …_FUNC EIGEN_STRONG_INLINE Scalar operator()(const NullaryOp& op, IndexType i, IndexType j) const {…
348 template <typename IndexType>
349 …EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Scalar operator()(const NullaryOp& op, IndexType i) const { …
351 …te <typename T, typename IndexType> EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE T packetOp(const Nullary…
352 …template <typename T, typename IndexType> EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE T packetOp(const N…
358 template <typename IndexType>
359 …_FUNC EIGEN_STRONG_INLINE Scalar operator()(const NullaryOp& op, IndexType=0, IndexType=0) const {…
360 …te <typename T, typename IndexType> EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE T packetOp(const Nullary…
366 template <typename IndexType>
[all …]
DDenseBase.h449 template<typename IndexType> EIGEN_DEVICE_FUNC
450 typename internal::traits<Derived>::Scalar minCoeff(IndexType* row, IndexType* col) const;
451 template<typename IndexType> EIGEN_DEVICE_FUNC
452 typename internal::traits<Derived>::Scalar maxCoeff(IndexType* row, IndexType* col) const;
453 template<typename IndexType> EIGEN_DEVICE_FUNC
454 typename internal::traits<Derived>::Scalar minCoeff(IndexType* index) const;
455 template<typename IndexType> EIGEN_DEVICE_FUNC
456 typename internal::traits<Derived>::Scalar maxCoeff(IndexType* index) const;
/external/deqp/framework/referencerenderer/
DrrRenderer.hpp81 DrawIndices (const void* ptr, IndexType type, int baseVertex = 0);
84 const IndexType indexType;
99 inline IndexType getIndexType (void) const { return m_indexType; } in getIndexType()
105 const IndexType m_indexType;
DrrDefs.hpp42 enum IndexType enum
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorMeta.h171 template<typename IndexType, Index... Is>
173 array<Index, sizeof...(Is)> customIndices2Array(IndexType& idx, numeric_list<Index, Is...>) {
176 template<typename IndexType>
178 array<Index, 0> customIndices2Array(IndexType&, numeric_list<Index>) {
183 template<typename Index, std::size_t NumIndices, typename IndexType>
185 array<Index, NumIndices> customIndices2Array(IndexType& idx) {
DTensorStorage.h69 template<typename T, int Options_, typename IndexType, int NumIndices_>
70 class TensorStorage<T, DSizes<IndexType, NumIndices_>, Options_>
73 typedef IndexType Index;
74 typedef DSizes<IndexType, NumIndices_> Dimensions;
75 typedef TensorStorage<T, DSizes<IndexType, NumIndices_>, Options_> Self;
DTensorFixedSize.h26 template<typename Scalar_, typename Dimensions_, int Options_, typename IndexType>
27 class TensorFixedSize : public TensorBase<TensorFixedSize<Scalar_, Dimensions_, Options_, IndexType
30 typedef TensorFixedSize<Scalar_, Dimensions_, Options_, IndexType> Self;
31 typedef TensorBase<TensorFixedSize<Scalar_, Dimensions_, Options_, IndexType> > Base;
/external/skia/src/gpu/
DGrPathRange.h75 template<typename IndexType> void loadPathsIfNeeded(const IndexType* indices, int count) const { in loadPathsIfNeeded()
115 template<typename IndexType> void assertPathsLoaded(const IndexType* indices, int count) const { in assertPathsLoaded()
/external/deqp/modules/glshared/
DglsDrawTest.hpp142 enum IndexType enum
182 static std::string indexTypeToString (IndexType type);
185 static int indexTypeSize (IndexType type);
223 IndexType indexType; //!< used only if drawMethod = DrawElements*
/external/llvm/test/DebugInfo/COFF/
Dtypes-array-advanced.ll49 ; CHECK: IndexType: unsigned long (0x22)
56 ; CHECK: IndexType: unsigned long (0x22)
63 ; CHECK: IndexType: unsigned long (0x22)
70 ; CHECK: IndexType: unsigned long (0x22)
91 ; CHECK: IndexType: unsigned long (0x22)
119 ; CHECK: IndexType: unsigned long (0x22)
/external/eigen/Eigen/src/Core/util/
DMeta.h386 template <typename T, typename IndexType=Index>
395 template <typename T, typename IndexType=Index>
398 …unctor(C const *,typename enable_if<(sizeof(return_ptr<C>()->operator()(IndexType(0)))>0)>::type *…
404 template <typename T, typename IndexType=Index>
407 …C const *,typename enable_if<(sizeof(return_ptr<C>()->operator()(IndexType(0),IndexType(0)))>0)>::…
/external/deqp/framework/opengl/
DgluDrawUtil.hpp67 enum IndexType enum
163 IndexType indexType; //!< Index type or INDEXTYPE_LAST if not used
174 PrimitiveList (PrimitiveType type_, int numElements_, IndexType indexType_, const void* indices_) in PrimitiveList()
DgluDrawUtil.cpp128 …IndexBuffer (const RenderContext& context, IndexType indexType, int numIndices, const void* indi…
174 static deUint32 getIndexGLType (IndexType type) in getIndexGLType()
187 static int getIndexSize (IndexType type) in getIndexSize()
373 IndexBuffer::IndexBuffer (const RenderContext& context, IndexType indexType, int numIndices, const … in IndexBuffer()
485 …Indexed (const glw::Functions& gl, PrimitiveType type, int numElements, IndexType indexType, const… in drawIndexed()
/external/deqp/modules/gles3/functional/
Des3fPrimitiveRestartTests.cpp73 enum IndexType enum in deqp::gles3::Functional::PrimitiveRestartCase
91 …ext, const char* name, const char* description, PrimitiveType primType, IndexType indexType, Funct…
121 IndexType m_indexType;
131 …ext, const char* name, const char* description, PrimitiveType primType, IndexType indexType, Funct… in PrimitiveRestartCase()
699 (PrimitiveRestartCase::IndexType)indexType, in init()
/external/swiftshader/src/OpenGL/libGLES_CM/
DIndexDataManager.cpp62 template<class IndexType>
63 void computeRange(const IndexType *indices, GLsizei count, GLuint *minIndex, GLuint *maxIndex) in computeRange()
/external/swiftshader/src/OpenGL/libGLESv2/
DIndexDataManager.cpp66 template<class IndexType>
67 void computeRange(const IndexType *indices, GLsizei count, GLuint *minIndex, GLuint *maxIndex) in computeRange()
/external/swiftshader/src/OpenGL/libGL/
DIndexDataManager.cpp66 template<class IndexType>
67 void computeRange(const IndexType *indices, GLsizei count, GLuint *minIndex, GLuint *maxIndex) in computeRange()
/external/eigen/Eigen/src/Cholesky/
DLDLT.h299 typedef typename TranspositionType::StorageIndex IndexType;
321 transpositions.coeffRef(k) = IndexType(index_of_biggest_in_corner);
371 transpositions.coeffRef(j) = IndexType(j);
532 typedef typename TranspositionType::StorageIndex IndexType;
544 m_transpositions.coeffRef(i) = IndexType(i);

123