Home
last modified time | relevance | path

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

12

/external/dexmaker/src/dx/java/com/android/dx/io/
DOpcodeInfo.java42 InstructionCodec.FORMAT_00X, IndexType.NONE);
49 IndexType.NONE);
54 IndexType.NONE);
59 IndexType.NONE);
64 InstructionCodec.FORMAT_10X, IndexType.NONE);
68 InstructionCodec.FORMAT_12X, IndexType.NONE);
72 InstructionCodec.FORMAT_22X, IndexType.NONE);
76 InstructionCodec.FORMAT_32X, IndexType.NONE);
80 InstructionCodec.FORMAT_12X, IndexType.NONE);
84 InstructionCodec.FORMAT_22X, IndexType.NONE);
[all …]
DIndexType.java22 public enum IndexType { enum
/external/eigen/Eigen/src/Core/
DVisitor.h173 template<typename IndexType>
175 DenseBase<Derived>::minCoeff(IndexType* rowId, IndexType* colId) const
190 template<typename IndexType>
192 DenseBase<Derived>::minCoeff(IndexType* index) const
207 template<typename IndexType>
209 DenseBase<Derived>::maxCoeff(IndexType* rowPtr, IndexType* colPtr) const
224 template<typename IndexType>
226 DenseBase<Derived>::maxCoeff(IndexType* index) const
DTranspositions.h147 template<int SizeAtCompileTime, int MaxSizeAtCompileTime, typename IndexType>
148 struct traits<Transpositions<SizeAtCompileTime,MaxSizeAtCompileTime,IndexType> >
150 typedef IndexType Index;
155 template<int SizeAtCompileTime, int MaxSizeAtCompileTime, typename IndexType>
156 …ions : public TranspositionsBase<Transpositions<SizeAtCompileTime,MaxSizeAtCompileTime,IndexType> >
218 template<int SizeAtCompileTime, int MaxSizeAtCompileTime, typename IndexType, int _PacketAccess>
219 struct traits<Map<Transpositions<SizeAtCompileTime,MaxSizeAtCompileTime,IndexType>,_PacketAccess> >
221 typedef IndexType Index;
226 template<int SizeAtCompileTime, int MaxSizeAtCompileTime, typename IndexType, int PacketAccess>
227 class Map<Transpositions<SizeAtCompileTime,MaxSizeAtCompileTime,IndexType>,PacketAccess>
[all …]
DPermutationMatrix.h273 template<int SizeAtCompileTime, int MaxSizeAtCompileTime, typename IndexType>
274 struct traits<PermutationMatrix<SizeAtCompileTime, MaxSizeAtCompileTime, IndexType> >
275 …: traits<Matrix<IndexType,SizeAtCompileTime,SizeAtCompileTime,0,MaxSizeAtCompileTime,MaxSizeAtComp…
277 typedef IndexType Index;
278 typedef Matrix<IndexType, SizeAtCompileTime, 1, 0, MaxSizeAtCompileTime, 1> IndicesType;
282 template<int SizeAtCompileTime, int MaxSizeAtCompileTime, typename IndexType>
283 …ix : public PermutationBase<PermutationMatrix<SizeAtCompileTime, MaxSizeAtCompileTime, IndexType> >
387 template<int SizeAtCompileTime, int MaxSizeAtCompileTime, typename IndexType, int _PacketAccess>
388 struct traits<Map<PermutationMatrix<SizeAtCompileTime, MaxSizeAtCompileTime, IndexType>,_PacketAcce…
389 …: traits<Matrix<IndexType,SizeAtCompileTime,SizeAtCompileTime,0,MaxSizeAtCompileTime,MaxSizeAtComp…
[all …]
DDenseBase.h405 template<typename IndexType>
406 typename internal::traits<Derived>::Scalar minCoeff(IndexType* row, IndexType* col) const;
407 template<typename IndexType>
408 typename internal::traits<Derived>::Scalar maxCoeff(IndexType* row, IndexType* col) const;
409 template<typename IndexType>
410 typename internal::traits<Derived>::Scalar minCoeff(IndexType* index) const;
411 template<typename IndexType>
412 typename internal::traits<Derived>::Scalar maxCoeff(IndexType* index) const;
/external/deqp/framework/referencerenderer/
DrrRenderer.hpp79 DrawIndices (const void* ptr, IndexType type, int baseVertex = 0);
82 const IndexType indexType;
97 inline IndexType getIndexType (void) const { return m_indexType; } in getIndexType()
103 const IndexType m_indexType;
DrrDefs.hpp42 enum IndexType enum
/external/chromium_org/third_party/angle/tests/angle_tests/
DIndexedPointsTest.cpp4 template <typename IndexType, GLenum IndexTypeName>
72 std::array<IndexType, mPointCount> indices = { 0, 1, 2, 3 }; in SetUp()
75 …glBufferData(GL_ELEMENT_ARRAY_BUFFER, indices.size() * sizeof(IndexType), indices.data(), GL_STATI… in SetUp()
102 … mPointCount - firstIndex, IndexTypeName, reinterpret_cast<void*>(firstIndex * sizeof(IndexType))); in runTest()
/external/eigen/unsupported/Eigen/src/IterativeSolvers/
DIncompleteCholesky.h39 typedef Matrix<Index,Dynamic, 1> IndexType; typedef
127 …Ptr, IdxType& rowIdx, SclType& vals, const Index& col, const Index& jk, IndexType& firstElt, Vecto…
149 Map<IndexType> rowIdx(m_L.innerIndexPtr(), nnz); //Row indices in factorize()
150 Map<IndexType> colPtr( m_L.outerIndexPtr(), n+1); // Pointer to the beginning of each row in factorize()
151IndexType firstElt(n-1); // for each j, points to the next entry in vals that will be used in the … in factorize()
154 IndexType irow(n); // Row indices of nonzero elements in each column in factorize()
241 …Ptr, IdxType& rowIdx, SclType& vals, const Index& col, const Index& jk, IndexType& firstElt, Vecto… in updateList()
/external/deqp/modules/glshared/
DglsDrawTest.hpp141 enum IndexType enum
181 static std::string indexTypeToString (IndexType type);
184 static int indexTypeSize (IndexType type);
222 IndexType indexType; //!< used only if drawMethod = DrawElements*
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
DZeroRegisterDecodedInstruction.java19 import com.android.dx.io.IndexType;
29 int index, IndexType indexType, int target, long literal) { in ZeroRegisterDecodedInstruction()
DOneRegisterDecodedInstruction.java19 import com.android.dx.io.IndexType;
32 int index, IndexType indexType, int target, long literal, in OneRegisterDecodedInstruction()
DRegisterRangeDecodedInstruction.java19 import com.android.dx.io.IndexType;
36 int index, IndexType indexType, int target, long literal, in RegisterRangeDecodedInstruction()
DDecodedInstruction.java19 import com.android.dx.io.IndexType;
50 private final IndexType indexType;
102 int index, IndexType indexType, int target, long literal) { in DecodedInstruction()
145 public final IndexType getIndexType() { in getIndexType()
DTwoRegisterDecodedInstruction.java19 import com.android.dx.io.IndexType;
35 int index, IndexType indexType, int target, long literal, in TwoRegisterDecodedInstruction()
DThreeRegisterDecodedInstruction.java19 import com.android.dx.io.IndexType;
38 int index, IndexType indexType, int target, long literal, in ThreeRegisterDecodedInstruction()
DFourRegisterDecodedInstruction.java19 import com.android.dx.io.IndexType;
41 int index, IndexType indexType, int target, long literal, in FourRegisterDecodedInstruction()
DFiveRegisterDecodedInstruction.java19 import com.android.dx.io.IndexType;
44 int index, IndexType indexType, int target, long literal, in FiveRegisterDecodedInstruction()
DInstructionCodec.java19 import com.android.dx.io.IndexType;
157 this, opcode, index, IndexType.VARIES, in FORMAT_20BC()
261 IndexType indexType = OpcodeInfo.getIndexType(opcode); in FORMAT_21C()
369 IndexType indexType = OpcodeInfo.getIndexType(opcode); in FORMAT_22C()
392 this, opcode, index, IndexType.FIELD_OFFSET, in FORMAT_22CS()
503 IndexType indexType = OpcodeInfo.getIndexType(opcode); in FORMAT_31C()
657 this, opcodeUnit, index, IndexType.VARIES, in FORMAT_40SC()
676 IndexType indexType = OpcodeInfo.getIndexType(opcodeUnit); in FORMAT_41C()
699 IndexType indexType = OpcodeInfo.getIndexType(opcodeUnit); in FORMAT_52C()
723 IndexType indexType = OpcodeInfo.getIndexType(opcodeUnit); in FORMAT_5RC()
[all …]
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/
DIndexRangeCache.cpp20 template <class IndexType>
21 static RangeUI ComputeTypedRange(const IndexType *indices, GLsizei count) in ComputeTypedRange()
/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/deqp/framework/opengl/simplereference/
DsglrReferenceUtils.hpp42 rr::IndexType mapGLIndexType (deUint32 type);

12