Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_allocator.h175 unsigned char *AlignedNextBlock = nullptr; member
190 AlignedNextBlock = BackingStore; in Alloc()
195 reinterpret_cast<uintptr_t>(AlignedNextBlock), kCacheLineSize); in Alloc()
198 AlignedNextBlock = BackingStore = nullptr; in Alloc()
205 AlignedNextBlock = reinterpret_cast<unsigned char *>(AlignedNextBlockNum); in Alloc()
208 DCHECK_EQ(reinterpret_cast<uintptr_t>(AlignedNextBlock) % kCacheLineSize, in Alloc()
217 void *Result = AlignedNextBlock; in Alloc()
218 AlignedNextBlock = in Alloc()
219 reinterpret_cast<unsigned char *>(AlignedNextBlock) + Block::Size; in Alloc()
228 AlignedNextBlock(nullptr), in Allocator()
[all …]