Home
last modified time | relevance | path

Searched refs:mDataRead (Results 1 – 3 of 3) sorted by relevance

/aosp12/hardware/qcom/sm7250/display/composer/
H A DQtiComposerCommandBuffer.h699 mDataRead = 0; in readQueue()
710 mDataRead = 0; in reset()
733 if (mDataRead + length > mDataSize) { in beginCommand()
736 mDataRead--; in beginCommand()
740 mCommandEnd = mDataRead + length; in beginCommand()
748 } else if (mDataRead > mCommandEnd) { in endCommand()
750 mDataRead = mCommandEnd; in endCommand()
751 } else if (mDataRead < mCommandEnd) { in endCommand()
753 mDataRead = mCommandEnd; in endCommand()
785 mDataRead += numElements; in readBlob()
[all …]
/aosp12/hardware/interfaces/graphics/composer/2.1/utils/command-buffer/include/composer-command-buffer/2.1/
H A DComposerCommandBuffer.h611 mDataRead = 0; in readQueue()
622 mDataRead = 0; in reset()
651 if (mDataRead + *outLength > mDataSize) { in beginCommandBase()
654 mDataRead--; in beginCommandBase()
658 mCommandEnd = mDataRead + *outLength; in beginCommandBase()
666 } else if (mDataRead > mCommandEnd) { in endCommand()
668 mDataRead = mCommandEnd; in endCommand()
669 } else if (mDataRead < mCommandEnd) { in endCommand()
671 mDataRead = mCommandEnd; in endCommand()
680 uint32_t read() { return mData[mDataRead++]; } in read()
[all …]
/aosp12/hardware/interfaces/graphics/composer/2.3/utils/hal/include/composer-hal/2.3/
H A DComposerCommandEngine.h111 memcpy(blob, &mData[mDataRead], size); in readBlob()
113 mDataRead += numElements; in readBlob()
114 mDataRead += (size - numElements * sizeof(uint32_t) != 0) ? 1 : 0; in readBlob()