HomeSort by relevance Sort by last modified time
    Searched refs:maxBufferCount (Results 1 - 2 of 2) sorted by null

  /frameworks/native/libs/gui/
BufferQueueCore.cpp 105 int maxBufferCount = 0;
110 maxBufferCount = s + 1;
115 for (int s = 0; s < maxBufferCount; ++s) {
154 int maxBufferCount = max(mDefaultMaxBufferCount, minMaxBufferCount);
157 maxBufferCount = mOverrideMaxBufferCount;
164 for (int s = maxBufferCount; s < BufferQueueDefs::NUM_BUFFER_SLOTS; ++s) {
167 maxBufferCount = s + 1;
171 return maxBufferCount;
BufferQueueProducer.cpp 143 const int maxBufferCount = mCore->getMaxBufferCountLocked(async);
148 if (mCore->mOverrideMaxBufferCount < maxBufferCount) {
156 for (int s = maxBufferCount; s < BufferQueueDefs::NUM_BUFFER_SLOTS; ++s) {
168 for (int s = 0; s < maxBufferCount; ++s) {
205 maxBufferCount - (dequeuedCount + 1);
222 > static_cast<size_t>(maxBufferCount);
556 const int maxBufferCount = mCore->getMaxBufferCountLocked(async);
561 if (mCore->mOverrideMaxBufferCount < maxBufferCount) {
568 if (slot < 0 || slot >= maxBufferCount) {
570 slot, maxBufferCount);
    [all...]

Completed in 73 milliseconds