Lines Matching refs:BackingStore
174 unsigned char *BackingStore = nullptr; member
182 if (UNLIKELY(BackingStore == nullptr)) { in Alloc()
183 BackingStore = allocateBuffer(MaxMemory); in Alloc()
184 if (BackingStore == nullptr) { in Alloc()
190 AlignedNextBlock = BackingStore; in Alloc()
193 auto BackingStoreNum = reinterpret_cast<uintptr_t>(BackingStore); in Alloc()
197 deallocateBuffer(BackingStore, MaxMemory); in Alloc()
198 AlignedNextBlock = BackingStore = nullptr; in Alloc()
227 BackingStore(nullptr), in Allocator()
235 BackingStore(reinterpret_cast<unsigned char *>(P)), in Allocator()
249 BackingStore = O.BackingStore; in Allocator()
250 O.BackingStore = nullptr; in Allocator()
264 if (BackingStore != nullptr)
265 deallocateBuffer(BackingStore, MaxMemory);
266 BackingStore = O.BackingStore;
267 O.BackingStore = nullptr;
280 if (Owned && BackingStore != nullptr) { in ~Allocator()
281 deallocateBuffer(BackingStore, MaxMemory); in ~Allocator()