Home
last modified time | relevance | path

Searched refs:HandleRange (Results 1 – 2 of 2) sorted by relevance

/external/angle/src/libANGLE/
DHandleAllocator.cpp22 bool operator()(const HandleRange &range, GLuint handle) const { return (range.end < handle); } in operator ()()
27 mUnallocatedList.push_back(HandleRange(1, std::numeric_limits<GLuint>::max())); in HandleAllocator()
33 mUnallocatedList.push_back(HandleRange(1, maximumHandleValue)); in HandleAllocator()
149 placementIt = mUnallocatedList.insert(placementIt, HandleRange(handle + 1, end)); in reserve()
150 mUnallocatedList.insert(placementIt, HandleRange(begin, handle - 1)); in reserve()
156 mUnallocatedList.push_back(HandleRange(1, std::numeric_limits<GLuint>::max())); in reset()
DHandleAllocator.h46 struct HandleRange struct
48 HandleRange(GLuint beginIn, GLuint endIn) : begin(beginIn), end(endIn) {} in HandleRange() argument
59 std::vector<HandleRange> mUnallocatedList; argument