Home
last modified time | relevance | path

Searched refs:IndexType (Results 1 - 25 of 62) sorted by relevance

123

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
H A DHexagonBlockRanges.h44 class IndexType { class
53 IndexType() {} in IndexType() function
54 IndexType(unsigned Idx) : Index(Idx) {} in IndexType() function
56 static bool isInstr(IndexType X) { return X.Index >= First; } in isInstr()
60 bool operator== (IndexType Idx) const;
62 bool operator!= (IndexType Idx) const;
63 IndexType operator++ ();
65 bool operator< (IndexType Idx) const;
66 bool operator<= (IndexType Idx) const;
69 bool operator> (IndexType Id
[all...]
H A DHexagonBlockRanges.cpp36 IndexType S = start(), E = end(), AS = A.start(), AE = A.end(); in overlaps()
50 IndexType E = (end() != IndexType::None) ? end() : start(); in contains()
51 IndexType AE = (A.end() != IndexType::None) ? A.end() : A.start(); in contains()
61 IndexType AS = A.start(), AE = A.end(); in merge()
62 if (AS < start() || start() == IndexType::None) in merge()
64 if (end() < AE || end() == IndexType::None) { in merge()
115 IndexType AS = A.start(), AE = A.end(); in addsub()
116 IndexType B in addsub()
[all...]
H A DHexagonFrameLowering.cpp2074 using IndexType = HexagonBlockRanges::IndexType; in optimizeSpillSlots()
2108 std::map<int,IndexType> LastStore, LastLoad; in optimizeSpillSlots()
2182 IndexType Index = IndexMap.getIndex(&In); in optimizeSpillSlots()
2184 if (LastStore[FI] == IndexType::None) in optimizeSpillSlots()
2185 LastStore[FI] = IndexType::Entry; in optimizeSpillSlots()
2189 if (LastStore[FI] != IndexType::None) in optimizeSpillSlots()
2191 else if (LastLoad[FI] != IndexType::None) in optimizeSpillSlots()
2192 RL.add(IndexType::Entry, LastLoad[FI], false, false); in optimizeSpillSlots()
2193 LastLoad[FI] = IndexType in optimizeSpillSlots()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DEnumeratedArray.h21 Enumeration LargestEnum = Enumeration::Last, typename IndexType = int,
22 IndexType Size = 1 + static_cast<IndexType>(LargestEnum)>
27 for (IndexType IX = 0; IX < Size; ++IX) { in EnumeratedArray()
32 auto IX = static_cast<const IndexType>(Index); in operator []()
39 IndexType, Size> &>(*this)[Index]); in operator []()
/third_party/vk-gl-cts/framework/referencerenderer/
H A 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;
H A DrrDefs.hpp42 enum IndexType enum
/third_party/vk-gl-cts/modules/glshared/
H A DglsDrawTest.hpp147 enum IndexType enum
187 static std::string indexTypeToString (IndexType type);
190 static int indexTypeSize (IndexType type);
228 IndexType indexType; //!< used only if drawMethod = DrawElements*
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/
H A DIndexedPointsTest.cpp11 template <typename IndexType, GLenum IndexTypeName>
95 const IndexType indices[] = {0, 2, 1, 3};
148 reinterpret_cast<void *>(firstIndex * sizeof(IndexType))); in runTest()
/third_party/skia/src/sksl/ir/
H A DSkSLIndexExpression.h25 : INHERITED(base->fLine, kExpressionKind, &IndexType(context, base->type())) in IndexExpression()
43 static const Type& IndexType(const Context& context, const Type& type);
/third_party/vk-gl-cts/framework/opengl/
H A 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()
H A DgluDrawUtil.cpp128 IndexBuffer (const RenderContext& context, IndexType indexType, int numIndices, const void* indices);
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 void* indices) in IndexBuffer()
485 static inline void drawIndexed (const glw::Functions& gl, PrimitiveType type, int numElements, IndexType indexType, const void* indexPtr) in drawIndexed()
/third_party/vk-gl-cts/modules/gles3/functional/
H A Des3fPrimitiveRestartTests.cpp73 enum IndexType enum in deqp::gles3::Functional::PrimitiveRestartCase
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) in PrimitiveRestartCase()
714 (PrimitiveRestartCase::IndexType)indexType, in init()
/third_party/vk-gl-cts/modules/gles2/functional/
H A Des2fDrawTests.cpp114 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) in AttributeGroup()
312 gls::DrawTestSpec::IndexType type; in init()
540 static const gls::DrawTestSpec::IndexType indexTypes[] = in init()
601 spec.indexType = random.chooseWeighted<gls::DrawTestSpec::IndexType> (DE_ARRAY_BEGIN(indexTypes), DE_ARRAY_END(indexTypes), indexTypeWeights.weights); in init()
/third_party/skia/src/sksl/lex/
H A DTransitionTable.cpp33 enum IndexType { enum
39 IndexType type;
/third_party/vk-gl-cts/framework/opengl/simplereference/
H A DsglrReferenceUtils.hpp42 rr::IndexType mapGLIndexType (deUint32 type);
/third_party/skia/third_party/externals/angle2/src/common/
H A Dutilities.cpp27 template <class IndexType>
28 gl::IndexRange ComputeTypedIndexRange(const IndexType *indices, in ComputeTypedIndexRange()
35 IndexType minIndex = 0; in ComputeTypedIndexRange()
36 IndexType maxIndex = 0; in ComputeTypedIndexRange()
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/
H A DIndexDataManager.cpp195 template<class IndexType>
196 void computeRange(const IndexType *indices, GLsizei count, GLuint *minIndex, GLuint *maxIndex, std::vector<GLsizei>* restartIndices) in computeRange()
203 if(restartIndices && indices[i] == IndexType(-1)) in computeRange()
/third_party/vk-gl-cts/modules/gles2/stress/
H A Des2sDrawTests.cpp110 gls::DrawTestSpec::IndexType type; in init()
254 gls::DrawTestSpec::IndexType indexTypes[] = in init()
315 spec.indexType = random.chooseWeighted<gls::DrawTestSpec::IndexType> (DE_ARRAY_BEGIN(indexTypes), DE_ARRAY_END(indexTypes), indexTypeWeights.weights); in init()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/BPF/
H A DBTF.h151 uint32_t IndexType; ///< Index type member
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelinePushConstantTests.cpp130 enum IndexType enum
208 const IndexType indexType);
227 const IndexType m_indexType;
281 IndexType indexType) in PushConstantGraphicsTestInstance()
710 const IndexType indexType);
722 IndexType indexType) in PushConstantGraphicsDisjointInstance()
787 DE_FATAL("Unhandled IndexType"); in updatePushConstants()
834 const IndexType indexType);
866 IndexType indexType) in PushConstantGraphicsOverlapTestInstance()
1051 const IndexType indexTyp
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/
H A DvktPipelinePushConstantTests.cpp128 enum IndexType enum
206 const IndexType indexType);
225 const IndexType m_indexType;
279 IndexType indexType) in PushConstantGraphicsTestInstance()
708 const IndexType indexType);
720 IndexType indexType) in PushConstantGraphicsDisjointInstance()
785 DE_FATAL("Unhandled IndexType"); in updatePushConstants()
832 const IndexType indexType);
864 IndexType indexType) in PushConstantGraphicsOverlapTestInstance()
1050 const IndexType indexTyp
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeRecord.h405 ArrayRecord(TypeIndex ElementType, TypeIndex IndexType, uint64_t Size, in ArrayRecord() argument
408 IndexType(IndexType), Size(Size), Name(Name) {} in ArrayRecord()
411 TypeIndex getIndexType() const { return IndexType; } in getIndexType()
416 TypeIndex IndexType; member in llvm::codeview::ArrayRecord
/third_party/vk-gl-cts/modules/gles31/functional/
H A Des31fDrawElementsBaseVertexTests.cpp502 gls::DrawTestSpec::IndexType type; in init()
567 gls::DrawTestSpec::IndexType type; in init()
617 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);
625 gls::DrawTestSpec::IndexType m_indexType;
629 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) in AttributeGroup()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
H A DSelectionDAGNodes.h2398 MachineMemOperand *MMO, ISD::MemIndexType IndexType) in MaskedGatherScatterSDNode()
2400 LSBaseSDNodeBits.AddressingMode = IndexType; in MaskedGatherScatterSDNode()
2401 assert(getIndexType() == IndexType && "Value truncated"); in MaskedGatherScatterSDNode()
2440 ISD::MemIndexType IndexType) in MaskedGatherSDNode()
2442 IndexType) {} in MaskedGatherSDNode()
2459 ISD::MemIndexType IndexType) in MaskedScatterSDNode()
2461 IndexType) {} in MaskedScatterSDNode()
2396 MaskedGatherScatterSDNode(ISD::NodeType NodeTy, unsigned Order, const DebugLoc &dl, SDVTList VTs, EVT MemVT, MachineMemOperand *MMO, ISD::MemIndexType IndexType) MaskedGatherScatterSDNode() argument
2438 MaskedGatherSDNode(unsigned Order, const DebugLoc &dl, SDVTList VTs, EVT MemVT, MachineMemOperand *MMO, ISD::MemIndexType IndexType) MaskedGatherSDNode() argument
2457 MaskedScatterSDNode(unsigned Order, const DebugLoc &dl, SDVTList VTs, EVT MemVT, MachineMemOperand *MMO, ISD::MemIndexType IndexType) MaskedScatterSDNode() argument
/third_party/vk-gl-cts/modules/gles3/stress/
H A Des3sDrawTests.cpp291 gls::DrawTestSpec::IndexType type; in init()
453 gls::DrawTestSpec::IndexType indexTypes[] = in init()
529 spec.indexType = random.chooseWeighted<gls::DrawTestSpec::IndexType> (DE_ARRAY_BEGIN(indexTypes), DE_ARRAY_END(indexTypes), indexTypeWeights.weights); in init()

Completed in 34 milliseconds

123