Lines Matching refs:mAllocation
47 explicit InlineStdAllocator(Allocation& allocation) : mAllocation(allocation) {}
48 InlineStdAllocator(const InlineStdAllocator& other) : mAllocation(other.mAllocation) {}
52 if (!mAllocation.inUse && num <= SIZE) {
53 mAllocation.inUse = true;
54 return static_cast<T*>(static_cast<void*>(mAllocation.array));
61 if (p == static_cast<T*>(static_cast<void*>(mAllocation.array))) {
62 mAllocation.inUse = false;
68 Allocation& mAllocation;
81 : std::vector<T, InlineStdAllocator<T, SIZE>>(InlineStdAllocator<T, SIZE>(mAllocation)) {
87 InlineStdAllocator<T, SIZE>(mAllocation)) {
94 typename InlineStdAllocator<T, SIZE>::Allocation mAllocation;