Searched refs:commandLength (Results 1 – 6 of 6) sorted by relevance
/hardware/interfaces/graphics/composer/2.3/utils/command-buffer/include/composer-command-buffer/2.3/ |
D | ComposerCommandBuffer.h | 83 size_t commandLength = 0; in setLayerPerFrameMetadataBlobs() local 95 commandLength += 1; in setLayerPerFrameMetadataBlobs() 98 commandLength += 1; // key of metadata blob in setLayerPerFrameMetadataBlobs() 99 commandLength += 1; // size information of metadata blob in setLayerPerFrameMetadataBlobs() 103 commandLength += metadataSize; in setLayerPerFrameMetadataBlobs() 104 commandLength += in setLayerPerFrameMetadataBlobs() 108 if (commandLength > std::numeric_limits<uint16_t>::max()) { in setLayerPerFrameMetadataBlobs() 115 uint16_t length = static_cast<uint16_t>(commandLength); in setLayerPerFrameMetadataBlobs()
|
/hardware/qcom/sm7250/display/composer/ |
D | QtiComposerCommandBuffer.h | 89 bool writeQueue(bool& queueChanged, uint32_t& commandLength, in writeQueue() argument 93 commandLength = 0; in writeQueue() 133 commandLength = mDataWritten; in writeQueue() 462 size_t commandLength = 0; in setLayerPerFrameMetadataBlobs() local 470 commandLength += metadata.size(); in setLayerPerFrameMetadataBlobs() 473 commandLength += sizeof(int32_t); // key of metadata blob in setLayerPerFrameMetadataBlobs() 474 commandLength += 1; // size information of metadata blob in setLayerPerFrameMetadataBlobs() 478 commandLength += metadataSize; in setLayerPerFrameMetadataBlobs() 479 commandLength += (metadataBlob.blob.size() - (metadataSize * sizeof(uint32_t)) > 0) ? 1 : 0; in setLayerPerFrameMetadataBlobs() 482 if (commandLength > std::numeric_limits<uint16_t>::max()) { in setLayerPerFrameMetadataBlobs() [all …]
|
/hardware/interfaces/graphics/composer/2.4/utils/vts/ |
D | ComposerVts.cpp | 137 uint32_t commandLength = 0; in execute() local 139 ASSERT_TRUE(writer->writeQueue(&queueChanged, &commandLength, &commandHandles)); in execute() 147 commandLength, commandHandles, in execute()
|
/hardware/interfaces/graphics/composer/2.2/utils/vts/ |
D | ComposerVts.cpp | 63 uint32_t commandLength = 0; in execute() local 65 ASSERT_TRUE(writer->writeQueue(&queueChanged, &commandLength, &commandHandles)); in execute() 72 mClient->executeCommands(commandLength, commandHandles, in execute()
|
/hardware/interfaces/graphics/composer/2.1/utils/vts/ |
D | ComposerVts.cpp | 282 uint32_t commandLength = 0; in execute() local 284 ASSERT_TRUE(writer->writeQueue(&queueChanged, &commandLength, &commandHandles)); in execute() 291 mClient->executeCommands(commandLength, commandHandles, in execute()
|
/hardware/interfaces/graphics/composer/2.1/utils/command-buffer/include/composer-command-buffer/2.1/ |
D | ComposerCommandBuffer.h | 595 bool readQueue(uint32_t commandLength, const hidl_vec<hidl_handle>& commandHandles) { in readQueue() argument 606 if (commandLength > mDataMaxSize || !mQueue->read(mData.get(), commandLength)) { in readQueue() 611 mDataSize = commandLength; in readQueue()
|