Home
last modified time | relevance | path

Searched refs:indexType (Results 1 – 25 of 156) sorted by relevance

1234567

/external/jdiff/src/jdiff/
DHTMLIndexes.java45 for (int indexType = 0; indexType < 3; indexType++) { in emitAllBottomLeftFiles()
46 emitBottomLeftFile(packagesIndexName, apiDiff, indexType, "Package"); in emitAllBottomLeftFiles()
47 emitBottomLeftFile(classesIndexName, apiDiff, indexType, "Class"); in emitAllBottomLeftFiles()
48 emitBottomLeftFile(constructorsIndexName, apiDiff, indexType, "Constructor"); in emitAllBottomLeftFiles()
49 emitBottomLeftFile(methodsIndexName, apiDiff, indexType, "Method"); in emitAllBottomLeftFiles()
50 emitBottomLeftFile(fieldsIndexName, apiDiff, indexType, "Field"); in emitAllBottomLeftFiles()
51 emitBottomLeftFile(allDiffsIndexName, apiDiff, indexType, "All"); in emitAllBottomLeftFiles()
69 APIDiff apiDiff, int indexType, in emitBottomLeftFile() argument
74 if (indexType == 0) { in emitBottomLeftFile()
77 } else if (indexType == 1) { in emitBottomLeftFile()
[all …]
/external/angle/src/libANGLE/renderer/d3d/
DIndexBuffer.cpp125 gl::DrawElementsType indexType) in setBufferSize() argument
129 return mIndexBuffer->initialize(context, bufferSize, indexType, mDynamic); in setBufferSize()
133 return mIndexBuffer->setSize(context, bufferSize, indexType); in setBufferSize()
145 gl::DrawElementsType indexType) in reserveBufferSpace() argument
151 ANGLE_TRY(setBufferSize(context, std::max(size, 2 * curBufferSize), indexType)); in reserveBufferSpace()
171 gl::DrawElementsType indexType) in reserveBufferSpace() argument
176 return setBufferSize(context, size, indexType); in reserveBufferSpace()
179 ASSERT(curSize >= size && indexType == getIndexType()); in reserveBufferSpace()
DIndexBuffer.h34 gl::DrawElementsType indexType,
49 gl::DrawElementsType indexType) = 0;
69 gl::DrawElementsType indexType) = 0;
92 gl::DrawElementsType indexType);
109 gl::DrawElementsType indexType) override;
120 gl::DrawElementsType indexType) override;
DIndexDataManager.cpp149 translated->indexType = dstType; in prepareIndexData()
285 gl::DrawElementsType indexType, in GetIndexTranslationDestType() argument
304 context, indexType, indexCount, indices, &indexRange)); in GetIndexTranslationDestType()
305 if (indexRange.end == gl::GetPrimitiveRestartIndex(indexType)) in GetIndexTranslationDestType()
312 *destTypeOut = (indexType == gl::DrawElementsType::UnsignedInt) in GetIndexTranslationDestType()
DIndexDataManager.h58 gl::DrawElementsType indexType; member
101 gl::DrawElementsType indexType,
/external/angle/src/libANGLE/renderer/d3d/d3d9/
DIndexBuffer9.cpp32 gl::DrawElementsType indexType, in initialize() argument
42 if (indexType == gl::DrawElementsType::UnsignedShort || in initialize()
43 indexType == gl::DrawElementsType::UnsignedByte) in initialize()
47 else if (indexType == gl::DrawElementsType::UnsignedInt) in initialize()
68 mIndexType = indexType; in initialize()
112 gl::DrawElementsType indexType) in setSize() argument
114 if (bufferSize > mBufferSize || indexType != mIndexType) in setSize()
116 return initialize(context, bufferSize, indexType, mDynamic); in setSize()
DIndexBuffer9.h26 gl::DrawElementsType indexType,
39 gl::DrawElementsType indexType) override;
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineInputAssemblyTests.cpp75 VkIndexType indexType);
80 static bool isRestartIndex (VkIndexType indexType, deUint32 indexValue);
81 static deUint32 getRestartIndex (VkIndexType indexType);
86 VkIndexType indexType,
104 VkIndexType indexType);
110 VkIndexType indexType,
124 VkIndexType indexType);
130 VkIndexType indexType,
146 VkIndexType indexType,
216 VkIndexType indexType) in InputAssemblyTest() argument
[all …]
/external/llvm-project/mlir/test/EDSC/
Dbuilder-api-test.cpp65 auto indexType = IndexType::get(&globalContext()); in TEST_FUNC() local
68 makeFunction("builder_dynamic_for_func_args", {}, {indexType, indexType}); in TEST_FUNC()
116 auto indexType = IndexType::get(&globalContext()); in TEST_FUNC() local
118 {indexType, indexType, indexType, indexType}); in TEST_FUNC()
138 auto indexType = IndexType::get(&globalContext()); in TEST_FUNC() local
140 {indexType, indexType, indexType, indexType}); in TEST_FUNC()
160 auto indexType = IndexType::get(&globalContext()); in TEST_FUNC() local
162 {indexType, indexType, indexType, indexType}); in TEST_FUNC()
181 auto indexType = IndexType::get(&globalContext()); in TEST_FUNC() local
183 {indexType, indexType, indexType}); in TEST_FUNC()
[all …]
/external/angle/src/libANGLE/renderer/d3d/d3d11/
DIndexBuffer11.cpp31 gl::DrawElementsType indexType, in initialize() argument
61 mIndexType = indexType; in initialize()
112 gl::DrawElementsType indexType) in setSize() argument
114 if (bufferSize > mBufferSize || indexType != mIndexType) in setSize()
116 return initialize(context, bufferSize, indexType, mDynamicUsage); in setSize()
DIndexBuffer11.h27 gl::DrawElementsType indexType,
40 gl::DrawElementsType indexType) override;
/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
Dfetch_jit.h100 SWR_FORMAT indexType; member
121 if (indexType != other.indexType)
/external/deqp/modules/gles3/functional/
Des3fPrimitiveRestartTests.cpp91 … char* name, const char* description, PrimitiveType primType, IndexType indexType, Function functi…
131 … char* name, const char* description, PrimitiveType primType, IndexType indexType, Function functi… in PrimitiveRestartCase() argument
134 , m_indexType (indexType) in PrimitiveRestartCase()
689 for (int indexType = 0; indexType < (int)PrimitiveRestartCase::INDEX_LAST; indexType++) in init() local
691 …const char *indexTypeName = indexType == (int)PrimitiveRestartCase::INDEX_UNSIGNED_BYTE ? "unsign… in init()
692 : indexType == (int)PrimitiveRestartCase::INDEX_UNSIGNED_SHORT ? "unsigned_short" in init()
693 : indexType == (int)PrimitiveRestartCase::INDEX_UNSIGNED_INT ? "unsigned_int" in init()
714 (PrimitiveRestartCase::IndexType)indexType, in init()
Des3fVertexArrayObjectTests.cpp121 GLenum indexType; member
135 , indexType (GL_NONE) in Spec()
270 switch (m_spec.indexType) in generateIndices()
285 switch (m_spec.indexType) in generateIndices()
585 GLU_CHECK_CALL(glDrawElements(GL_TRIANGLES, m_spec.count, m_spec.indexType, m_indices)); in makeDrawCall()
587 …GLU_CHECK_CALL(glDrawElementsInstanced(GL_TRIANGLES, m_spec.count, m_spec.indexType, m_indices, m_… in makeDrawCall()
592 …GLU_CHECK_CALL(glDrawElements(GL_TRIANGLES, m_spec.count, m_spec.indexType, (GLvoid*)((GLintptr)m_… in makeDrawCall()
594 …GLU_CHECK_CALL(glDrawElementsInstanced(GL_TRIANGLES, m_spec.count, m_spec.indexType, (GLvoid*)((GL… in makeDrawCall()
757 m_spec.indexType = GL_NONE; in init()
854 switch (m_spec.indexType) in generateIndices()
[all …]
/external/angle/src/libANGLE/renderer/metal/
DVertexArrayMtl.h55 gl::DrawElementsType indexType,
76 gl::DrawElementsType indexType,
82 gl::DrawElementsType indexType,
90 gl::DrawElementsType indexType,
DVertexArrayMtl.mm63 size_t GetIndexConvertedBufferSize(gl::DrawElementsType indexType, size_t indexCount)
65 size_t elementSize = gl::GetDrawElementsTypeSize(indexType);
66 if (indexType == gl::DrawElementsType::UnsignedByte)
81 gl::DrawElementsType indexType,
89 const size_t amount = GetIndexConvertedBufferSize(indexType, indexCount);
94 if (indexType == gl::DrawElementsType::UnsignedByte)
152 inline size_t GetIndexCount(BufferMtl *srcBuffer, size_t offset, gl::DrawElementsType indexType)
154 size_t elementSize = gl::GetDrawElementsTypeSize(indexType);
704 gl::DrawElementsType indexType,
711 ASSERT(offsetModulo != 0 || indexType == gl::DrawElementsType::UnsignedByte);
[all …]
/external/deqp/framework/opengl/
DgluDrawUtil.cpp128 …IndexBuffer (const RenderContext& context, IndexType indexType, int numIndices, const void* indi…
373 IndexBuffer::IndexBuffer (const RenderContext& context, IndexType indexType, int numIndices, const … in IndexBuffer() argument
380 gl.bufferData(GL_ELEMENT_ARRAY_BUFFER, numIndices*getIndexSize(indexType), indices, usage); in IndexBuffer()
459 if ((primitives.indexType == INDEXTYPE_LAST) != (primitives.indices == 0)) in isDrawCallValid()
485 …onst glw::Functions& gl, PrimitiveType type, int numElements, IndexType indexType, const void* ind… in drawIndexed() argument
488 deUint32 indexGLType = getIndexGLType(indexType); in drawIndexed()
516 …drawIndexed(gl, primitives.type, primitives.numElements, primitives.indexType, primitives.indices); in drawFromUserPointers()
549 …IndexBuffer indexBuffer(context, primitives.indexType, primitives.numElements, primitives.indices); in drawFromBuffers()
556 drawIndexed(gl, primitives.type, primitives.numElements, primitives.indexType, 0); in drawFromBuffers()
DgluDrawUtil.hpp163 IndexType indexType; //!< Index type or INDEXTYPE_LAST if not used member
169 , indexType (INDEXTYPE_LAST) in PrimitiveList()
177 , indexType (indexType_) in PrimitiveList()
185 , indexType (INDEXTYPE_LAST) in PrimitiveList()
/external/angle/src/tests/perf_tests/
DIndexDataManagerTest.cpp28 MockIndexBuffer(unsigned int bufferSize, gl::DrawElementsType indexType) in MockIndexBuffer() argument
29 : mBufferSize(bufferSize), mIndexType(indexType) in MockIndexBuffer()
52 MockBufferFactoryD3D(unsigned int bufferSize, gl::DrawElementsType indexType) in MockBufferFactoryD3D() argument
53 : mBufferSize(bufferSize), mIndexType(indexType) in MockBufferFactoryD3D()
/external/llvm-project/mlir/lib/Interfaces/
DViewLikeInterface.cpp163 auto indexType = parser.getBuilder().getIndexType(); in parseOffsetsSizesAndStrides() local
191 parser.resolveOperands(offsetsInfo, indexType, result.operands) || in parseOffsetsSizesAndStrides()
192 parser.resolveOperands(sizesInfo, indexType, result.operands) || in parseOffsetsSizesAndStrides()
193 parser.resolveOperands(stridesInfo, indexType, result.operands)); in parseOffsetsSizesAndStrides()
/external/llvm-project/mlir/lib/Dialect/GPU/Transforms/
DMemoryPromotion.cpp70 auto indexType = builder.getIndexType(); in insertCopyLoops() local
75 builder.create<gpu::ThreadIdOp>(loc, indexType, dimName)); in insertCopyLoops()
77 builder.create<gpu::BlockDimOp>(loc, indexType, dimName)); in insertCopyLoops()
DAllReduceLowering.cpp33 indexType(IndexType::get(reduceOp.getContext())), in GpuAllReduceRewriter()
109 Value index = create<IndexCastOp>(indexType, subgroupId); in rewrite()
126 Value index = create<IndexCastOp>(indexType, invocationIdx); in rewrite()
148 Value dim = create<T>(indexType, rewriter.getStringAttr(dimension)); in getDimOp()
374 Type indexType; member
/external/llvm-project/flang/lib/Lower/
DDoLoopHelper.cpp39 auto indexType = builder.getIndexType(); in createLoop() local
40 auto zero = builder.createIntegerConstant(loc, indexType, 0); in createLoop()
/external/lzma/CPP/7zip/UI/Common/
DUpdateCallback.cpp581 STDMETHODIMP CArchiveUpdateCallback::ReportOperation(UInt32 indexType, UInt32 index, UInt32 op) in ReportOperation() argument
587 if (indexType == NArchive::NEventIndexType::kOutArcIndex) in ReportOperation()
606 if (indexType == NArchive::NEventIndexType::kInArcIndex) in ReportOperation()
624 else if (indexType == NArchive::NEventIndexType::kBlockIndex) in ReportOperation()
639 STDMETHODIMP CArchiveUpdateCallback::ReportExtractResult(UInt32 indexType, UInt32 index, Int32 opRe… in ReportExtractResult() argument
648 if (indexType == NArchive::NEventIndexType::kOutArcIndex) in ReportExtractResult()
665 if (indexType == NArchive::NEventIndexType::kInArcIndex) in ReportExtractResult()
682 else if (indexType == NArchive::NEventIndexType::kBlockIndex) in ReportExtractResult()
/external/deqp/modules/glshared/
DglsDrawTest.cpp177 static deUint32 indexTypeToGL (DrawTestSpec::IndexType indexType) in indexTypeToGL() argument
186 return de::getSizedArrayElement<DrawTestSpec::INDEXTYPE_LAST>(indexTypes, (int)indexType); in indexTypeToGL()
1763 …d drawMethod, int firstVertex, int vertexCount, DrawTestSpec::IndexType indexType, const void* ind…
1842 …d drawMethod, int firstVertex, int vertexCount, DrawTestSpec::IndexType indexType, const void* ind… in render() argument
1891 m_ctx.drawElements(primitiveToGL(primitive), vertexCount, indexTypeToGL(indexType), indexOffset); in render()
1896 …rimitiveToGL(primitive), rangeStart, rangeEnd, vertexCount, indexTypeToGL(indexType), indexOffset); in render()
1901 …m_ctx.drawElementsInstanced(primitiveToGL(primitive), vertexCount, indexTypeToGL(indexType), index… in render()
1965 …dexOffset - (const deUint8*)DE_NULL) % gls::DrawTestSpec::indexTypeSize(indexType) == 0); // \note… in render()
1969 …nst deUint8*)indexOffset - (const deUint8*)DE_NULL) / gls::DrawTestSpec::indexTypeSize(indexType)); in render()
1995 …m_ctx.drawElementsIndirect(primitiveToGL(primitive), indexTypeToGL(indexType), glu::BufferOffsetAs… in render()
[all …]

1234567