Searched refs:mUnallocatedList (Results 1 – 2 of 2) sorted by relevance
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()[all …]
59 std::vector<HandleRange> mUnallocatedList; variable