Home
last modified time | relevance | path

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

/device/generic/vulkan-cereal/third-party/angle/src/common/
DPoolAlloc.cpp90 mStack.push_back({}); in initialize()
115 for (auto &allocs : mStack) in ~PoolAllocator()
122 mStack.clear(); in ~PoolAllocator()
153 mStack.push_back(state); in push()
160 mStack.push_back({}); in push()
173 if (mStack.size() < 1) in pop()
177 Header *page = mStack.back().page; in pop()
178 mCurrentPageOffset = mStack.back().offset; in pop()
196 mStack.pop_back(); in pop()
198 for (auto &alloc : mStack.back()) in pop()
[all …]
DPoolAlloc.h267 AllocStack mStack; // stack of where to allocate from, to partition pool variable
273 std::vector<std::vector<void *>> mStack; variable