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

12 3 4 5 6

  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorMeta.h 171 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) {
TensorForwardDeclarations.h 26 template<typename Scalar_, int NumIndices_, int Options_ = 0, typename IndexType = DenseIndex> class Tensor;
27 template<typename Scalar_, typename Dimensions, int Options_ = 0, typename IndexType = DenseIndex> class TensorFixedSize;
TensorFixedSize.h 26 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;
  /dalvik/dx/src/com/android/dx/io/instructions/
DecodedInstruction.java 20 import com.android.dx.io.IndexType;
50 private final IndexType indexType;
102 int index, IndexType indexType, int target, long literal) {
114 this.indexType = indexType;
145 public final IndexType getIndexType() {
146 return indexType;
InstructionCodec.java 20 import com.android.dx.io.IndexType;
160 this, opcode, index, IndexType.VARIES,
264 IndexType indexType = OpcodeInfo.getIndexType(opcode);
266 this, opcode, index, indexType,
372 IndexType indexType = OpcodeInfo.getIndexType(opcode);
374 this, opcode, index, indexType,
395 this, opcode, index, IndexType.FIELD_OFFSET,
507 IndexType indexType = OpcodeInfo.getIndexType(opcode)
    [all...]
  /external/eigen/Eigen/src/Core/
DenseBase.h 449 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
    [all...]
  /external/swiftshader/src/OpenGL/libGLES_CM/
IndexDataManager.cpp 62 template<class IndexType>
63 void computeRange(const IndexType *indices, GLsizei count, GLuint *minIndex, GLuint *maxIndex)
  /external/deqp/framework/opengl/
gluDrawUtil.hpp 67 enum IndexType
163 IndexType indexType; //!< Index type or INDEXTYPE_LAST if not used
169 , indexType (INDEXTYPE_LAST)
174 PrimitiveList (PrimitiveType type_, int numElements_, IndexType indexType_, const void* indices_)
177 , indexType (indexType_)
185 , indexType (INDEXTYPE_LAST)
gluDrawUtil.cpp 128 IndexBuffer (const RenderContext& context, IndexType indexType, int numIndices, const void* indices);
174 static deUint32 getIndexGLType (IndexType type)
187 static int getIndexSize (IndexType type)
373 IndexBuffer::IndexBuffer (const RenderContext& context, IndexType indexType, int numIndices, const void* indices)
380 gl.bufferData(GL_ELEMENT_ARRAY_BUFFER, numIndices*getIndexSize(indexType), indices, usage);
459 if ((primitives.indexType == INDEXTYPE_LAST) != (primitives.indices == 0))
485 static inline void drawIndexed (const glw::Functions& gl, PrimitiveType type, int numElements, IndexType indexType, const void* indexPtr
    [all...]
  /external/eigen/Eigen/src/Core/util/
Meta.h 386 template <typename T, typename IndexType=Index>
395 template <typename T, typename IndexType=Index>
398 template <typename C> static meta_yes testFunctor(C const *,typename enable_if<(sizeof(return_ptr<C>()->operator()(IndexType(0)))>0)>::type * = 0);
404 template <typename T, typename IndexType=Index>
407 template <typename C> static meta_yes testFunctor(C const *,typename enable_if<(sizeof(return_ptr<C>()->operator()(IndexType(0),IndexType(0)))>0)>::type * = 0);
  /external/compiler-rt/lib/ubsan/
ubsan_handlers.h 77 const TypeDescriptor &IndexType;
  /external/llvm/lib/Target/Hexagon/
HexagonFrameLowering.cpp     [all...]
  /external/swiftshader/src/OpenGL/libGL/
IndexDataManager.cpp 66 template<class IndexType>
67 void computeRange(const IndexType *indices, GLsizei count, GLuint *minIndex, GLuint *maxIndex)
  /external/swiftshader/src/OpenGL/libGLESv2/
IndexDataManager.cpp 66 template<class IndexType>
67 void computeRange(const IndexType *indices, GLsizei count, GLuint *minIndex, GLuint *maxIndex)
  /external/deqp/modules/gles3/functional/
es3fPrimitiveRestartTests.cpp 73 enum IndexType
91 PrimitiveRestartCase (Context& context, const char* name, const char* description, PrimitiveType primType, IndexType indexType, Function function, bool beginWithRestart, bool endWithRestart, bool duplicateRestarts);
121 IndexType m_indexType;
131 PrimitiveRestartCase::PrimitiveRestartCase (Context& context, const char* name, const char* description, PrimitiveType primType, IndexType indexType, Function function, bool beginWithRestart, bool endWithRestart, bool duplicateRestarts)
134 , m_indexType (indexType)
674 for (int indexType = 0; indexType < (int)PrimitiveRestartCase::INDEX_LAST; indexType++
    [all...]
  /external/eigen/Eigen/src/Cholesky/
LDLT.h 299 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);
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
DGMRES.h 38 template <typename VectorType, typename IndexType>
39 void sortWithPermutation (VectorType& vec, IndexType& perm, typename IndexType::Scalar& ncut)
42 typedef typename IndexType::Scalar Index;
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelinePushConstantTests.cpp 100 enum IndexType
117 const IndexType indexType);
127 const IndexType m_indexType;
137 const IndexType indexType);
158 const IndexType m_indexType;
201 const IndexType indexType)
205 , m_indexType (indexType)
    [all...]
  /external/deqp/modules/gles2/functional/
es2fDrawTests.cpp 77 spec.indexType = gls::DrawTestSpec::INDEXTYPE_LAST;
114 AttributeGroup (Context& context, const char* name, const char* descr, gls::DrawTestSpec::DrawMethod drawMethod, gls::DrawTestSpec::Primitive primitive, gls::DrawTestSpec::IndexType indexType, gls::DrawTestSpec::Storage indexStorage);
122 gls::DrawTestSpec::IndexType m_indexType;
126 AttributeGroup::AttributeGroup (Context& context, const char* name, const char* descr, gls::DrawTestSpec::DrawMethod drawMethod, gls::DrawTestSpec::Primitive primitive, gls::DrawTestSpec::IndexType indexType, gls::DrawTestSpec::Storage indexStorage)
130 , m_indexType (indexType)
150 spec.indexType = m_indexType;
185 spec.indexType = m_indexType;
231 spec.indexType = m_indexType
    [all...]
  /external/llvm/include/llvm/DebugInfo/CodeView/
TypeRecord.h 412 ArrayRecord(TypeIndex ElementType, TypeIndex IndexType, uint64_t Size,
415 IndexType(IndexType), Size(Size), Name(Name) {}
425 TypeIndex getIndexType() const { return IndexType; }
432 TypeIndex IndexType;
438 TypeIndex IndexType;
    [all...]
  /external/deqp/modules/gles31/functional/
es31fDrawElementsBaseVertexTests.cpp 134 spec.indexType = gls::DrawTestSpec::INDEXTYPE_LAST;
479 gls::DrawTestSpec::IndexType type;
503 spec.indexType = indexTest.type;
543 gls::DrawTestSpec::IndexType type;
570 spec.indexType = indexTest.type;
592 AttributeGroup (Context& context, const char* name, const char* descr, gls::DrawTestSpec::DrawMethod drawMethod, gls::DrawTestSpec::Primitive primitive, gls::DrawTestSpec::IndexType indexType, gls::DrawTestSpec::Storage indexStorage);
600 gls::DrawTestSpec::IndexType m_indexType;
604 AttributeGroup::AttributeGroup (Context& context, const char* name, const char* descr, gls::DrawTestSpec::DrawMethod drawMethod, gls::DrawTestSpec::Primitive primitive, gls::DrawTestSpec::IndexType indexType, gls::DrawTestSpec::Storage indexStorage
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
TypeRecord.h 374 ArrayRecord(TypeIndex ElementType, TypeIndex IndexType, uint64_t Size,
377 IndexType(IndexType), Size(Size), Name(Name) {}
380 TypeIndex getIndexType() const { return IndexType; }
385 TypeIndex IndexType;
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
TypeRecord.h 374 ArrayRecord(TypeIndex ElementType, TypeIndex IndexType, uint64_t Size,
377 IndexType(IndexType), Size(Size), Name(Name) {}
380 TypeIndex getIndexType() const { return IndexType; }
385 TypeIndex IndexType;
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
TypeRecord.h 374 ArrayRecord(TypeIndex ElementType, TypeIndex IndexType, uint64_t Size,
377 IndexType(IndexType), Size(Size), Name(Name) {}
380 TypeIndex getIndexType() const { return IndexType; }
385 TypeIndex IndexType;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
TypeRecord.h 374 ArrayRecord(TypeIndex ElementType, TypeIndex IndexType, uint64_t Size,
377 IndexType(IndexType), Size(Size), Name(Name) {}
380 TypeIndex getIndexType() const { return IndexType; }
385 TypeIndex IndexType;

Completed in 1557 milliseconds

12 3 4 5 6