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

/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_allocator.h175 unsigned char *AlignedNextBlock = nullptr; member in struct:__xray::Allocator
190 AlignedNextBlock = BackingStore;
195 reinterpret_cast<uintptr_t>(AlignedNextBlock), kCacheLineSize);
198 AlignedNextBlock = BackingStore = nullptr;
205 AlignedNextBlock = reinterpret_cast<unsigned char *>(AlignedNextBlockNum);
207 // Assert that AlignedNextBlock is cache-line aligned.
208 DCHECK_EQ(reinterpret_cast<uintptr_t>(AlignedNextBlock) % kCacheLineSize,
217 void *Result = AlignedNextBlock;
218 AlignedNextBlock =
219 reinterpret_cast<unsigned char *>(AlignedNextBlock)
[all...]

Completed in 44 milliseconds