reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

projects/compiler-rt/lib/xray/xray_allocator.h
  182     if (UNLIKELY(BackingStore == nullptr)) {
  183       BackingStore = allocateBuffer(MaxMemory);
  184       if (BackingStore == nullptr) {
  190       AlignedNextBlock = BackingStore;
  193       auto BackingStoreNum = reinterpret_cast<uintptr_t>(BackingStore);
  197         deallocateBuffer(BackingStore, MaxMemory);
  198         AlignedNextBlock = BackingStore = nullptr;
  249     BackingStore = O.BackingStore;
  249     BackingStore = O.BackingStore;
  250     O.BackingStore = nullptr;
  264     if (BackingStore != nullptr)
  265       deallocateBuffer(BackingStore, MaxMemory);
  266     BackingStore = O.BackingStore;
  280     if (Owned && BackingStore != nullptr) {
  281       deallocateBuffer(BackingStore, MaxMemory);