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 138 const int maxBufferCount = mCore->getMaxBufferCountLocked(async);
143 if (mCore->mOverrideMaxBufferCount < maxBufferCount) {
151 for (int s = maxBufferCount; s < BufferQueueDefs::NUM_BUFFER_SLOTS; ++s) {
163 for (int s = 0; s < maxBufferCount; ++s) {
200 maxBufferCount - (dequeuedCount + 1);
217 > static_cast<size_t>(maxBufferCount);
553 const int maxBufferCount = mCore->getMaxBufferCountLocked(async);
558 if (mCore->mOverrideMaxBufferCount < maxBufferCount) {
565 if (slot < 0 || slot >= maxBufferCount) {
567 slot, maxBufferCount);
    [all...]

Completed in 214 milliseconds