/external/cldr/tools/java/org/unicode/cldr/tool/ |
D | GenerateComparison.java | 105 Set<R2<String, String>> indexInfo = new TreeSet<>(ENG); in main() local 123 addToIndex(indexInfo, "ERROR1.6 ", locale, localeName); in main() 134 addToIndex(indexInfo, "ERROR1.7 ", locale, localeName); in main() 151 addToIndex(indexInfo, "NEW ", locale, localeName); in main() 154 addToIndex(indexInfo, "DELETED ", locale, localeName); in main() 181 addToIndex(indexInfo, "ERROR ", locale, localeName); in main() 357 addToIndex(indexInfo, "", locale, localeName, fileCounter); in main() 447 for (R2<String, String> indexPair : indexInfo) { in main() 480 …private static void addToIndex(Set<R2<String, String>> indexInfo, String title, final String local… in addToIndex() argument 482 addToIndex(indexInfo, title, locale, localeName, null); in addToIndex() [all …]
|
/external/angle/src/libANGLE/renderer/d3d/d3d11/ |
D | Buffer11.cpp | 239 SourceIndexData *indexInfo, 704 SourceIndexData *indexInfo, in getEmulatedIndexedBuffer() argument 709 ASSERT(indexInfo); in getEmulatedIndexedBuffer() 716 emulatedStorage->getBuffer(context, indexInfo, attribute, startVertex, &nativeBuffer)); in getEmulatedIndexedBuffer() 1534 SourceIndexData *indexInfo, in getBuffer() argument 1544 if (!mBuffer.valid() || indexInfo->srcIndicesChanged) in getBuffer() 1551 switch (indexInfo->srcIndexType) in getBuffer() 1554 indicesDataSize = sizeof(GLuint) * indexInfo->srcCount; in getBuffer() 1557 indicesDataSize = sizeof(GLushort) * indexInfo->srcCount; in getBuffer() 1560 indicesDataSize = sizeof(GLubyte) * indexInfo->srcCount; in getBuffer() [all …]
|
D | VertexArray11.h | 58 void updateCachedIndexInfo(const TranslatedIndexData &indexInfo);
|
D | StateManager11.cpp | 3062 TranslatedIndexData indexInfo = mVertexArray11->getCachedIndexInfo(); in applyVertexBuffers() local 3063 if (indexInfo.srcIndexData.srcBuffer != nullptr) in applyVertexBuffers() 3066 ANGLE_TRY(indexInfo.srcIndexData.srcBuffer->getData(context, &bufferData)); in applyVertexBuffers() 3070 reinterpret_cast<ptrdiff_t>(indexInfo.srcIndexData.srcIndices); in applyVertexBuffers() 3071 indexInfo.srcIndexData.srcBuffer = nullptr; in applyVertexBuffers() 3072 indexInfo.srcIndexData.srcIndices = bufferData + offset; in applyVertexBuffers() 3075 ANGLE_TRY(bufferStorage->getEmulatedIndexedBuffer(context, &indexInfo.srcIndexData, in applyVertexBuffers() 3078 mVertexArray11->updateCachedIndexInfo(indexInfo); in applyVertexBuffers() 3186 TranslatedIndexData indexInfo; in applyIndexBuffer() local 3188 elementArrayBuffer, indices, &indexInfo)); in applyIndexBuffer() [all …]
|
D | VertexArray11.cpp | 360 void VertexArray11::updateCachedIndexInfo(const TranslatedIndexData &indexInfo) in updateCachedIndexInfo() argument 362 mCachedIndexInfo = indexInfo; in updateCachedIndexInfo()
|
D | Buffer11.h | 61 SourceIndexData *indexInfo,
|
/external/swiftshader/src/OpenGL/libGLESv2/ |
D | Context.cpp | 3106 … GLuint start, GLuint end, GLsizei count, GLenum mode, GLenum type, TranslatedIndexData *indexInfo) in applyIndexBuffer() argument 3108 … end, count, getCurrentVertexArray()->getElementArrayBuffer(), indices, indexInfo, isPrimitiveRest… in applyIndexBuffer() 3112 device->setIndexBuffer(indexInfo->indexBuffer); in applyIndexBuffer() 3680 TranslatedIndexData indexInfo(primitiveCount); in drawElements() local 3681 GLenum err = applyIndexBuffer(indices, start, end, count, mode, type, &indexInfo); in drawElements() 3693 GLsizei vertexCount = indexInfo.maxIndex - indexInfo.minIndex + 1; in drawElements() 3694 err = applyVertexBuffer(-(int)indexInfo.minIndex, indexInfo.minIndex, vertexCount, i); in drawElements() 3716 device->drawIndexedPrimitive(primitiveType, indexInfo.indexOffset, indexInfo.primitiveCount); in drawElements() 3720 transformFeedback->addVertexOffset(indexInfo.primitiveCount * verticesPerPrimitive); in drawElements()
|
D | Context.h | 684 …GLuint start, GLuint end, GLsizei count, GLenum mode, GLenum type, TranslatedIndexData *indexInfo);
|
/external/angle/src/libANGLE/renderer/d3d/d3d9/ |
D | Renderer9.cpp | 1367 TranslatedIndexData *indexInfo) in applyIndexBuffer() argument 1376 indices, indexInfo)); in applyIndexBuffer() 1379 ASSERT(indexInfo->storage == nullptr); in applyIndexBuffer() 1381 if (indexInfo->serial != mAppliedIBSerial) in applyIndexBuffer() 1383 IndexBuffer9 *indexBuffer = GetAs<IndexBuffer9>(indexInfo->indexBuffer); in applyIndexBuffer() 1386 mAppliedIBSerial = indexInfo->serial; in applyIndexBuffer() 1440 TranslatedIndexData indexInfo; in drawElementsImpl() local 1442 ANGLE_TRY(applyIndexBuffer(context, indices, count, mode, type, &indexInfo)); in drawElementsImpl() 1450 static_cast<GLsizei>(vertexCount), instances, &indexInfo)); in drawElementsImpl() 1472 static_cast<UINT>(vertexCount), indexInfo.startIndex, in drawElementsImpl()
|
D | Renderer9.h | 141 TranslatedIndexData *indexInfo); 147 TranslatedIndexData *indexInfo);
|
/external/swiftshader/src/OpenGL/libGLES_CM/ |
D | Context.cpp | 2065 …uffer(const void *indices, GLsizei count, GLenum mode, GLenum type, TranslatedIndexData *indexInfo) in applyIndexBuffer() argument 2067 … = mIndexDataManager->prepareIndexData(type, count, mState.elementArrayBuffer, indices, indexInfo); in applyIndexBuffer() 2071 device->setIndexBuffer(indexInfo->indexBuffer); in applyIndexBuffer() 2780 TranslatedIndexData indexInfo; in drawElements() local 2781 GLenum err = applyIndexBuffer(indices, count, mode, type, &indexInfo); in drawElements() 2787 GLsizei vertexCount = indexInfo.maxIndex - indexInfo.minIndex + 1; in drawElements() 2788 err = applyVertexBuffer(-(int)indexInfo.minIndex, indexInfo.minIndex, vertexCount); in drawElements() 2798 device->drawIndexedPrimitive(primitiveType, indexInfo.indexOffset, primitiveCount); in drawElements()
|
D | Context.h | 587 …ffer(const void *indices, GLsizei count, GLenum mode, GLenum type, TranslatedIndexData *indexInfo);
|
/external/llvm-project/mlir/lib/Dialect/Vector/ |
D | VectorOps.cpp | 2008 SmallVector<OpAsmParser::OperandType, 8> indexInfo; in parseTransferReadOp() local 2013 parser.parseOperandList(indexInfo, OpAsmParser::Delimiter::Square) || in parseTransferReadOp() 2035 parser.resolveOperands(indexInfo, indexType, result.operands) || in parseTransferReadOp() 2185 SmallVector<OpAsmParser::OperandType, 8> indexInfo; in parseTransferWriteOp() local 2189 parser.parseOperandList(indexInfo, OpAsmParser::Delimiter::Square) || in parseTransferWriteOp() 2211 parser.resolveOperands(indexInfo, indexType, result.operands)); in parseTransferWriteOp()
|
/external/rust/crates/libc/src/unix/haiku/ |
D | native.rs | 862 indexInfo: *mut index_info, in fs_stat_index()
|
/external/llvm-project/mlir/lib/Dialect/StandardOps/IR/ |
D | Ops.cpp | 2557 SmallVector<OpAsmParser::OperandType, 4> indexInfo; in parsePrefetchOp() local 2565 parser.parseOperandList(indexInfo, OpAsmParser::Delimiter::Square) || in parsePrefetchOp() 2574 parser.resolveOperands(indexInfo, indexTy, result.operands)) in parsePrefetchOp()
|
/external/angle/third_party/vulkan-deps/vulkan-headers/src/include/vulkan/ |
D | vulkan_raii.hpp | 4152 …MultiIndexedEXT( ArrayProxy<const VULKAN_HPP_NAMESPACE::MultiDrawIndexedInfoEXT> const & indexInfo, 16141 ArrayProxy<const VULKAN_HPP_NAMESPACE::MultiDrawIndexedInfoEXT> const & indexInfo, in drawMultiIndexedEXT() argument 16152 indexInfo.size(), in drawMultiIndexedEXT() 16153 reinterpret_cast<const VkMultiDrawIndexedInfoEXT *>( indexInfo.data() ), in drawMultiIndexedEXT()
|
D | vulkan_funcs.hpp | 18223 ArrayProxy<const VULKAN_HPP_NAMESPACE::MultiDrawIndexedInfoEXT> const & indexInfo, in drawMultiIndexedEXT() argument 18231 indexInfo.size(), in drawMultiIndexedEXT() 18232 … reinterpret_cast<const VkMultiDrawIndexedInfoEXT *>( indexInfo.data() ), in drawMultiIndexedEXT()
|
D | vulkan_handles.hpp | 4444 …MultiIndexedEXT( ArrayProxy<const VULKAN_HPP_NAMESPACE::MultiDrawIndexedInfoEXT> const & indexInfo,
|