HomeSort by relevance Sort by last modified time
    Searched refs:IndexType (Results 1 - 25 of 148) sorted by null

1 2 3 4 5 6

  /external/eigen/Eigen/src/OrderingMethods/
Eigen_Colamd.h 131 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/
HexagonBlockRanges.h 45 class IndexType {
53 static bool isInstr(IndexType X) { return X.Index >= First; }
55 IndexType() : Index(None) {}
56 IndexType(unsigned Idx) : Index(Idx) {}
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...]
HexagonBlockRanges.cpp 32 IndexType S = start(), E = end(), AS = A.start(), AE = A.end();
47 IndexType E = (end() != IndexType::None) ? end() : start();
48 IndexType AE = (A.end() != IndexType::None) ? A.end() : A.start();
59 IndexType AS = A.start(), AE = A.end();
60 if (AS < start() || start() == IndexType::None)
62 if (end() < AE || end() == IndexType::None) {
116 IndexType AS = A.start(), AE = A.end();
117 IndexType BS = B.start(), BE = B.end()
    [all...]
  /dalvik/dx/src/com/android/dx/io/
OpcodeInfo.java 42 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...]
IndexType.java 22 public enum IndexType {
  /external/eigen/Eigen/src/Core/functors/
NullaryFunctors.h 33 template<typename IndexType>
34 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Scalar operator() (IndexType row, IndexType col) const { return row==col ? Scalar(1) : Scalar(0); }
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>
    [all...]
  /external/deqp/framework/referencerenderer/
rrDefs.hpp 42 enum IndexType
rrRenderer.hpp 81 DrawIndices (const void* ptr, IndexType type, int baseVertex = 0);
84 const IndexType indexType;
99 inline IndexType getIndexType (void) const { return m_indexType; }
105 const IndexType m_indexType;
  /dalvik/dx/src/com/android/dx/io/instructions/
ZeroRegisterDecodedInstruction.java 19 import com.android.dx.io.IndexType;
29 int index, IndexType indexType, int target, long literal) {
30 super(format, opcode, index, indexType, target, literal);
OneRegisterDecodedInstruction.java 19 import com.android.dx.io.IndexType;
32 int index, IndexType indexType, int target, long literal,
34 super(format, opcode, index, indexType, target, literal);
RegisterRangeDecodedInstruction.java 19 import com.android.dx.io.IndexType;
36 int index, IndexType indexType, int target, long literal,
38 super(format, opcode, index, indexType, target, literal);
TwoRegisterDecodedInstruction.java 19 import com.android.dx.io.IndexType;
35 int index, IndexType indexType, int target, long literal,
37 super(format, opcode, index, indexType, target, literal);
FiveRegisterDecodedInstruction.java 19 import com.android.dx.io.IndexType;
44 int index, IndexType indexType, int target, long literal,
46 super(format, opcode, index, indexType, target, literal);
FourRegisterDecodedInstruction.java 19 import com.android.dx.io.IndexType;
41 int index, IndexType indexType, int target, long literal,
43 super(format, opcode, index, indexType, target, literal);
InvokePolymorphicDecodedInstruction.java 19 import com.android.dx.io.IndexType;
31 IndexType indexType,
34 super(format, opcode, methodIndex, indexType, 0, 0);
InvokePolymorphicRangeDecodedInstruction.java 19 import com.android.dx.io.IndexType;
32 IndexType indexType,
36 super(format, opcode, methodIndex, indexType, 0, 0);
ThreeRegisterDecodedInstruction.java 19 import com.android.dx.io.IndexType;
38 int index, IndexType indexType, int target, long literal,
40 super(format, opcode, index, indexType, target, literal);
  /art/runtime/
dex_reference_collection.h 31 template <class IndexType, template<typename Type> class Allocator>
34 using VectorAllocator = Allocator<IndexType>;
35 using IndexVector = std::vector<IndexType, VectorAllocator>;
48 void AddReference(const DexFile* dex, IndexType index) {
  /external/eigen/Eigen/src/PardisoSupport/
PardisoSupport.h 43 template<typename IndexType>
46 static IndexType run( _MKL_DSS_HANDLE_t pt, IndexType maxfct, IndexType mnum, IndexType type, IndexType phase, IndexType n, void *a,
47 IndexType *ia, IndexType *ja, IndexType *perm, IndexType nrhs, IndexType *iparm, IndexType msglvl, void *b, void *x
    [all...]
  /external/eigen/Eigen/src/Core/
Visitor.h 197 /** \fn DenseBase<Derived>::minCoeff(IndexType* rowId, IndexType* colId) const
204 template<typename IndexType>
207 DenseBase<Derived>::minCoeff(IndexType* rowId, IndexType* colId) const
219 * \sa DenseBase::minCoeff(IndexType*,IndexType*), DenseBase::maxCoeff(IndexType*,IndexType*), DenseBase::visit(), DenseBase::minCoeff()
222 template<typename IndexType>
    [all...]
CoreEvaluators.h 346 template <typename IndexType>
347 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Scalar operator()(const NullaryOp& op, IndexType i, IndexType j) const { return op(i,j); }
348 template <typename IndexType>
349 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Scalar operator()(const NullaryOp& op, IndexType i) const { return op(i); }
351 template <typename T, typename IndexType> EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE T packetOp(const NullaryOp& op, IndexType i, IndexType j) const { return op.template packetOp<T>(i,j); }
352 template <typename T, typename IndexType> EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE T packetOp(const NullaryOp& op, IndexType i) const { return op.template packetOp<T>(i);
    [all...]
  /external/skia/src/gpu/
GrPathRange.h 75 template<typename IndexType> void loadPathsIfNeeded(const IndexType* indices, int count) const {
115 template<typename IndexType> void assertPathsLoaded(const IndexType* indices, int count) const {
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorStorage.h 69 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;
  /external/deqp/framework/opengl/simplereference/
sglrReferenceUtils.hpp 42 rr::IndexType mapGLIndexType (deUint32 type);
  /external/deqp/modules/glshared/
glsDrawTest.hpp 142 enum IndexType
182 static std::string indexTypeToString (IndexType type);
185 static int indexTypeSize (IndexType type);
223 IndexType indexType; //!< used only if drawMethod = DrawElements*

Completed in 623 milliseconds

1 2 3 4 5 6