Home
last modified time | relevance | path

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

12

/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/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/
DIndexBuffer.cpp121 gl::Error IndexBufferInterface::setBufferSize(unsigned int bufferSize, GLenum indexType) in setBufferSize() argument
125 return mIndexBuffer->initialize(bufferSize, indexType, mDynamic); in setBufferSize()
129 return mIndexBuffer->setSize(bufferSize, indexType); in setBufferSize()
141 gl::Error StreamingIndexBufferInterface::reserveBufferSpace(unsigned int size, GLenum indexType) in reserveBufferSpace() argument
147 gl::Error error = setBufferSize(std::max(size, 2 * curBufferSize), indexType); in reserveBufferSpace()
176 gl::Error StaticIndexBufferInterface::reserveBufferSpace(unsigned int size, GLenum indexType) in reserveBufferSpace() argument
181 return setBufferSize(size, indexType); in reserveBufferSpace()
183 else if (curSize >= size && indexType == getIndexType()) in reserveBufferSpace()
DIndexBuffer.h27 virtual gl::Error initialize(unsigned int bufferSize, GLenum indexType, bool dynamic) = 0;
36 virtual gl::Error setSize(unsigned int bufferSize, GLenum indexType) = 0;
56 virtual gl::Error reserveBufferSpace(unsigned int size, GLenum indexType) = 0;
74 gl::Error setBufferSize(unsigned int bufferSize, GLenum indexType);
93 virtual gl::Error reserveBufferSpace(unsigned int size, GLenum indexType);
102 virtual gl::Error reserveBufferSpace(unsigned int size, GLenum indexType);
DIndexDataManager.h46 GLenum indexType; member
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
DIndexBuffer9.cpp28 gl::Error IndexBuffer9::initialize(unsigned int bufferSize, GLenum indexType, bool dynamic) in initialize() argument
37 if (indexType == GL_UNSIGNED_SHORT || indexType == GL_UNSIGNED_BYTE) in initialize()
41 else if (indexType == GL_UNSIGNED_INT) in initialize()
62 mIndexType = indexType; in initialize()
120 gl::Error IndexBuffer9::setSize(unsigned int bufferSize, GLenum indexType) in setSize() argument
122 if (bufferSize > mBufferSize || indexType != mIndexType) in setSize()
124 return initialize(bufferSize, indexType, mDynamic); in setSize()
DIndexBuffer9.h24 virtual gl::Error initialize(unsigned int bufferSize, GLenum indexType, bool dynamic);
33 virtual gl::Error setSize(unsigned int bufferSize, GLenum indexType);
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
DIndexBuffer11.cpp27 gl::Error IndexBuffer11::initialize(unsigned int bufferSize, GLenum indexType, bool dynamic) in initialize() argument
53 mIndexType = indexType; in initialize()
113 gl::Error IndexBuffer11::setSize(unsigned int bufferSize, GLenum indexType) in setSize() argument
115 if (bufferSize > mBufferSize || indexType != mIndexType) in setSize()
117 return initialize(bufferSize, indexType, mDynamicUsage); in setSize()
DIndexBuffer11.h24 virtual gl::Error initialize(unsigned int bufferSize, GLenum indexType, bool dynamic);
33 virtual gl::Error setSize(unsigned int bufferSize, GLenum indexType);
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
DInstructionCodec.java261 IndexType indexType = OpcodeInfo.getIndexType(opcode); in FORMAT_21C() local
263 this, opcode, index, indexType, in FORMAT_21C()
369 IndexType indexType = OpcodeInfo.getIndexType(opcode); in FORMAT_22C() local
371 this, opcode, index, indexType, in FORMAT_22C()
503 IndexType indexType = OpcodeInfo.getIndexType(opcode); in FORMAT_31C() local
505 this, opcode, index, indexType, in FORMAT_31C()
676 IndexType indexType = OpcodeInfo.getIndexType(opcodeUnit); in FORMAT_41C() local
678 this, opcodeUnit, index, indexType, in FORMAT_41C()
699 IndexType indexType = OpcodeInfo.getIndexType(opcodeUnit); in FORMAT_52C() local
701 this, opcodeUnit, index, indexType, in FORMAT_52C()
[all …]
DDecodedInstruction.java50 private final IndexType indexType; field in DecodedInstruction
102 int index, IndexType indexType, int target, long literal) { in DecodedInstruction() argument
114 this.indexType = indexType; in DecodedInstruction()
146 return indexType; in getIndexType()
DZeroRegisterDecodedInstruction.java29 int index, IndexType indexType, int target, long literal) { in ZeroRegisterDecodedInstruction() argument
30 super(format, opcode, index, indexType, target, literal); in ZeroRegisterDecodedInstruction()
DOneRegisterDecodedInstruction.java32 int index, IndexType indexType, int target, long literal, in OneRegisterDecodedInstruction() argument
34 super(format, opcode, index, indexType, target, literal); in OneRegisterDecodedInstruction()
DRegisterRangeDecodedInstruction.java36 int index, IndexType indexType, int target, long literal, in RegisterRangeDecodedInstruction() argument
38 super(format, opcode, index, indexType, target, literal); in RegisterRangeDecodedInstruction()
DTwoRegisterDecodedInstruction.java35 int index, IndexType indexType, int target, long literal, in TwoRegisterDecodedInstruction() argument
37 super(format, opcode, index, indexType, target, literal); in TwoRegisterDecodedInstruction()
DThreeRegisterDecodedInstruction.java38 int index, IndexType indexType, int target, long literal, in ThreeRegisterDecodedInstruction() argument
40 super(format, opcode, index, indexType, target, literal); in ThreeRegisterDecodedInstruction()
DFourRegisterDecodedInstruction.java41 int index, IndexType indexType, int target, long literal, in FourRegisterDecodedInstruction() argument
43 super(format, opcode, index, indexType, target, literal); in FourRegisterDecodedInstruction()
DFiveRegisterDecodedInstruction.java44 int index, IndexType indexType, int target, long literal, in FiveRegisterDecodedInstruction() argument
46 super(format, opcode, index, indexType, target, literal); in FiveRegisterDecodedInstruction()
/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()
674 for (int indexType = 0; indexType < (int)PrimitiveRestartCase::INDEX_LAST; indexType++) in init() local
676 …const char *indexTypeName = indexType == (int)PrimitiveRestartCase::INDEX_UNSIGNED_BYTE ? "unsign… in init()
677 : indexType == (int)PrimitiveRestartCase::INDEX_UNSIGNED_SHORT ? "unsigned_short" in init()
678 : indexType == (int)PrimitiveRestartCase::INDEX_UNSIGNED_INT ? "unsigned_int" in init()
699 (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()
577 GLU_CHECK_CALL(glDrawElements(GL_TRIANGLES, m_spec.count, m_spec.indexType, m_indices)); in makeDrawCall()
579 …GLU_CHECK_CALL(glDrawElementsInstanced(GL_TRIANGLES, m_spec.count, m_spec.indexType, m_indices, m_… in makeDrawCall()
584 …GLU_CHECK_CALL(glDrawElements(GL_TRIANGLES, m_spec.count, m_spec.indexType, (GLvoid*)((GLintptr)m_… in makeDrawCall()
586 …GLU_CHECK_CALL(glDrawElementsInstanced(GL_TRIANGLES, m_spec.count, m_spec.indexType, (GLvoid*)((GL… in makeDrawCall()
749 m_spec.indexType = GL_NONE; in init()
846 switch (m_spec.indexType) in generateIndices()
[all …]
Des3fDrawTests.cpp108 spec.indexType = gls::DrawTestSpec::INDEXTYPE_LAST; in genBasicSpec()
144 …d, gls::DrawTestSpec::Primitive primitive, gls::DrawTestSpec::IndexType indexType, gls::DrawTestSp…
156 …d, gls::DrawTestSpec::Primitive primitive, gls::DrawTestSpec::IndexType indexType, gls::DrawTestSp… in AttributeGroup() argument
160 , m_indexType (indexType) in AttributeGroup()
186 spec.indexType = m_indexType; in init()
221 spec.indexType = m_indexType; in init()
267 spec.indexType = m_indexType; in init()
327 spec.indexType = m_indexType; in init()
455 spec.indexType = indexTest.type; in init()
1033 …spec.indexType = random.chooseWeighted<gls::DrawTestSpec::IndexType> (DE_ARRAY_BEGIN(indexTypes… in init()
/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/deqp/modules/glshared/
DglsDrawTest.cpp187 static deUint32 indexTypeToGL (DrawTestSpec::IndexType indexType) in indexTypeToGL() argument
197 return indexTypes[(int)indexType]; in indexTypeToGL()
1860 …d drawMethod, int firstVertex, int vertexCount, DrawTestSpec::IndexType indexType, const void* ind…
1939 …d drawMethod, int firstVertex, int vertexCount, DrawTestSpec::IndexType indexType, const void* ind… in render() argument
1988 m_ctx.drawElements(primitiveToGL(primitive), vertexCount, indexTypeToGL(indexType), indexOffset); in render()
1993 …rimitiveToGL(primitive), rangeStart, rangeEnd, vertexCount, indexTypeToGL(indexType), indexOffset); in render()
1998 …m_ctx.drawElementsInstanced(primitiveToGL(primitive), vertexCount, indexTypeToGL(indexType), index… in render()
2062 …dexOffset - (const deUint8*)DE_NULL) % gls::DrawTestSpec::indexTypeSize(indexType) == 0); // \note… in render()
2066 …nst deUint8*)indexOffset - (const deUint8*)DE_NULL) / gls::DrawTestSpec::indexTypeSize(indexType)); in render()
2092 …m_ctx.drawElementsIndirect(primitiveToGL(primitive), indexTypeToGL(indexType), (const deInt8*)DE_N… in render()
[all …]
/external/deqp/modules/gles2/functional/
Des2fDrawTests.cpp77 spec.indexType = gls::DrawTestSpec::INDEXTYPE_LAST; in genBasicSpec()
114 …d, gls::DrawTestSpec::Primitive primitive, gls::DrawTestSpec::IndexType indexType, gls::DrawTestSp…
126 …d, gls::DrawTestSpec::Primitive primitive, gls::DrawTestSpec::IndexType indexType, gls::DrawTestSp… in AttributeGroup() argument
130 , m_indexType (indexType) in AttributeGroup()
150 spec.indexType = m_indexType; in init()
185 spec.indexType = m_indexType; in init()
231 spec.indexType = m_indexType; in init()
353 spec.indexType = indexTest.type; in init()
603 …spec.indexType = random.chooseWeighted<gls::DrawTestSpec::IndexType> (DE_ARRAY_BEGIN(indexTypes… in init()
/external/chromium_org/third_party/angle/tests/angle_tests/
DLineLoopTest.cpp68 void runTest(GLenum indexType, GLubyte indexBuffer, const GLvoid *indexPtr) in runTest() argument
101 glDrawElements(GL_LINE_LOOP, 4, indexType, indexPtr); in runTest()

12