Home
last modified time | relevance | path

Searched refs:ControlBlock (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_buffer_queue.cpp30 BufferQueue::ControlBlock *allocControlBlock(size_t Size, size_t Count) { in allocControlBlock()
32 allocateBuffer((sizeof(BufferQueue::ControlBlock) - 1) + (Size * Count)); in allocControlBlock()
34 : reinterpret_cast<BufferQueue::ControlBlock *>(B); in allocControlBlock()
37 void deallocControlBlock(BufferQueue::ControlBlock *C, size_t Size, in deallocControlBlock()
40 (sizeof(BufferQueue::ControlBlock) - 1) + (Size * Count)); in deallocControlBlock()
43 void decRefCount(BufferQueue::ControlBlock *C, size_t Size, size_t Count) { in decRefCount()
50 void incRefCount(BufferQueue::ControlBlock *C) { in incRefCount()
H A Dxray_buffer_queue.h42 struct ControlBlock { struct
62 ControlBlock *BackingStore = nullptr; argument
63 ControlBlock *ExtentsBackingStore = nullptr;
144 ControlBlock *BackingStore;
147 ControlBlock *ExtentsBackingStore;
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DGlobalModuleIndex.cpp546 enum { Other, ControlBlock, ASTBlock, DiagnosticOptionsBlock } State = Other; in loadModuleFile() enumerator
577 State = ControlBlock; in loadModuleFile()
618 if (State == ControlBlock && Code == IMPORTS) { in loadModuleFile()