Lines Matching refs:poolIndex
2535 for (size_t poolIndex = 0; poolIndex < mDescriptorPools.size(); ++poolIndex) in allocateNewPool() local
2537 if (!mDescriptorPools[poolIndex]->isReferenced() && in allocateNewPool()
2538 !mDescriptorPools[poolIndex]->get().isCurrentlyInUse(lastCompletedSerial)) in allocateNewPool()
2540 mCurrentPoolIndex = poolIndex; in allocateNewPool()
2649 void DynamicallyGrowingPool<Pool>::onEntryFreed(ContextVk *contextVk, size_t poolIndex) in onEntryFreed() argument
2651 ASSERT(poolIndex < mPoolStats.size() && mPoolStats[poolIndex].freedCount < mPoolSize); in onEntryFreed()
2654 mPoolStats[poolIndex].serial = contextVk->getCurrentQueueSerial(); in onEntryFreed()
2655 ++mPoolStats[poolIndex].freedCount; in onEntryFreed()
2707 size_t poolIndex = query->mQueryPoolIndex; in freeQuery() local
2708 ASSERT(getQueryPool(poolIndex).valid()); in freeQuery()
2710 onEntryFreed(contextVk, poolIndex); in freeQuery()