Lines Matching refs:fPool
711 MemoryPool() : fCount(0), fPool() {} in MemoryPool()
715 delete fPool[i]; in ~MemoryPool() local
723 fPool(std::move(other.fPool)) { in MemoryPool()
735 std::swap(fPool, other.fPool);
748 int32_t capacity = fPool.getCapacity(); in create()
750 fPool.resize(capacity == stackCapacity ? 4 * capacity : 2 * capacity, in create()
754 return fPool[fCount++] = new T(std::forward<Args>(args)...); in create()
778 MaybeStackArray<T*, stackCapacity> fPool; variable
819 return this->fPool.getAlias(); in getAlias()
823 return this->fPool.getAlias(); in getAlias()
833 return this->fPool[i];
843 return this->fPool[i];