HomeSort by: relevance | last modified time | path
    Searched refs:BackingStore (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_allocator.h 175 unsigned char *BackingStore = nullptr;
183 if (UNLIKELY(BackingStore == nullptr)) {
184 BackingStore = allocateBuffer(MaxMemory);
185 if (BackingStore == nullptr) {
191 AlignedNextBlock = BackingStore;
194 auto BackingStoreNum = reinterpret_cast<uintptr_t>(BackingStore);
198 deallocateBuffer(BackingStore, MaxMemory);
199 AlignedNextBlock = BackingStore = nullptr;
228 BackingStore(nullptr),
236 BackingStore(reinterpret_cast<unsigned char *>(P))
    [all...]
xray_buffer_queue.cc 83 BackingStore = allocControlBlock(BufferSize, BufferCount);
84 if (BackingStore == nullptr)
90 deallocControlBlock(BackingStore, BufferSize, BufferCount);
91 BackingStore = nullptr;
115 // being at the start of the BackingStore pointer.
116 atomic_store(&BackingStore->RefCount, 1, memory_order_release);
130 Buf.Data = &BackingStore->Data + (BufferSize * i);
132 Buf.BackingStore = BackingStore;
152 BackingStore(nullptr)
    [all...]
xray_buffer_queue.h 63 ControlBlock *BackingStore = nullptr;
145 ControlBlock *BackingStore;

Completed in 14 milliseconds