/external/jdiff/src/jdiff/ |
D | HTMLIndexes.java | 45 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/ |
D | IndexBuffer.cpp | 121 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()
|
D | IndexBuffer.h | 27 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);
|
D | IndexDataManager.h | 46 GLenum indexType; member
|
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/ |
D | IndexBuffer9.cpp | 28 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()
|
D | IndexBuffer9.h | 24 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/ |
D | IndexBuffer11.cpp | 27 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()
|
D | IndexBuffer11.h | 24 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/ |
D | InstructionCodec.java | 261 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 …]
|
D | DecodedInstruction.java | 50 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()
|
D | ZeroRegisterDecodedInstruction.java | 29 int index, IndexType indexType, int target, long literal) { in ZeroRegisterDecodedInstruction() argument 30 super(format, opcode, index, indexType, target, literal); in ZeroRegisterDecodedInstruction()
|
D | OneRegisterDecodedInstruction.java | 32 int index, IndexType indexType, int target, long literal, in OneRegisterDecodedInstruction() argument 34 super(format, opcode, index, indexType, target, literal); in OneRegisterDecodedInstruction()
|
D | RegisterRangeDecodedInstruction.java | 36 int index, IndexType indexType, int target, long literal, in RegisterRangeDecodedInstruction() argument 38 super(format, opcode, index, indexType, target, literal); in RegisterRangeDecodedInstruction()
|
D | TwoRegisterDecodedInstruction.java | 35 int index, IndexType indexType, int target, long literal, in TwoRegisterDecodedInstruction() argument 37 super(format, opcode, index, indexType, target, literal); in TwoRegisterDecodedInstruction()
|
D | ThreeRegisterDecodedInstruction.java | 38 int index, IndexType indexType, int target, long literal, in ThreeRegisterDecodedInstruction() argument 40 super(format, opcode, index, indexType, target, literal); in ThreeRegisterDecodedInstruction()
|
D | FourRegisterDecodedInstruction.java | 41 int index, IndexType indexType, int target, long literal, in FourRegisterDecodedInstruction() argument 43 super(format, opcode, index, indexType, target, literal); in FourRegisterDecodedInstruction()
|
D | FiveRegisterDecodedInstruction.java | 44 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/ |
D | es3fPrimitiveRestartTests.cpp | 91 … 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()
|
D | es3fVertexArrayObjectTests.cpp | 121 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 …]
|
D | es3fDrawTests.cpp | 108 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/ |
D | gluDrawUtil.cpp | 128 …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()
|
D | gluDrawUtil.hpp | 163 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/ |
D | glsDrawTest.cpp | 187 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/ |
D | es2fDrawTests.cpp | 77 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/ |
D | LineLoopTest.cpp | 68 void runTest(GLenum indexType, GLubyte indexBuffer, const GLvoid *indexPtr) in runTest() argument 101 glDrawElements(GL_LINE_LOOP, 4, indexType, indexPtr); in runTest()
|