Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_allocator.h168 static constexpr auto Size = nearest_boundary(N, kCacheLineSize);
195 reinterpret_cast<uintptr_t>(AlignedNextBlock), kCacheLineSize); in Alloc()
208 DCHECK_EQ(reinterpret_cast<uintptr_t>(AlignedNextBlock) % kCacheLineSize, in Alloc()
226 : MaxMemory(RoundUpTo(M, kCacheLineSize)), in Allocator()
H A Dxray_buffer_queue.h45 char Buffer[kCacheLineSize];
H A Dxray_buffer_queue.cpp62 unsigned char Storage[kCacheLineSize];
H A Dxray_segmented_array.h64 SegmentControlBlockSize + next_pow2(sizeof(T)), kCacheLineSize);
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_quarantine.h137 char pad0_[kCacheLineSize];
141 char pad1_[kCacheLineSize];
145 char pad2_[kCacheLineSize];
H A Dsanitizer_allocator_primary64.h149 DCHECK_EQ(RegionInfoSpace % kCacheLineSize, 0);
683 COMPILER_CHECK(sizeof(RegionInfo) % kCacheLineSize == 0);
H A Dsanitizer_allocator_primary32.h286 COMPILER_CHECK(sizeof(SizeClassInfo) % kCacheLineSize == 0);
H A Dsanitizer_common.h41 const uptr kCacheLineSize = SANITIZER_CACHE_LINE_SIZE; variable