Lines Matching refs:mUnallocatedList
27 mUnallocatedList.push_back(HandleRange(1, std::numeric_limits<GLuint>::max())); in HandleAllocator()
33 mUnallocatedList.push_back(HandleRange(1, maximumHandleValue)); in HandleAllocator()
47 ASSERT(!mUnallocatedList.empty() || !mReleasedList.empty()); in allocate()
65 auto listIt = mUnallocatedList.begin(); in allocate()
72 mUnallocatedList.erase(listIt); in allocate()
119 auto boundIt = std::lower_bound(mUnallocatedList.begin(), mUnallocatedList.end(), handle, in reserve()
122 ASSERT(boundIt != mUnallocatedList.end()); in reserve()
131 mUnallocatedList.erase(boundIt); in reserve()
148 auto placementIt = mUnallocatedList.erase(boundIt); in reserve()
149 placementIt = mUnallocatedList.insert(placementIt, HandleRange(handle + 1, end)); in reserve()
150 mUnallocatedList.insert(placementIt, HandleRange(begin, handle - 1)); in reserve()
155 mUnallocatedList.clear(); in reset()
156 mUnallocatedList.push_back(HandleRange(1, std::numeric_limits<GLuint>::max())); in reset()