Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/compiler-rt/lib/xray/
H A Dxray_allocator.h169 static constexpr auto Size = nearest_boundary(N, kCacheLineSize);
196 reinterpret_cast<uintptr_t>(AlignedNextBlock), kCacheLineSize); in Alloc()
209 DCHECK_EQ(reinterpret_cast<uintptr_t>(AlignedNextBlock) % kCacheLineSize, in Alloc()
227 : MaxMemory(RoundUpTo(M, kCacheLineSize)), in Allocator()
H A Dxray_buffer_queue.h46 char Buffer[kCacheLineSize];
H A Dxray_buffer_queue.cc63 unsigned char Storage[kCacheLineSize];
H A Dxray_segmented_array.h66 SegmentControlBlockSize + next_pow2(sizeof(T)), kCacheLineSize);
/freebsd-12.1/contrib/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_quarantine.h143 char pad0_[kCacheLineSize];
147 char pad1_[kCacheLineSize];
151 char pad2_[kCacheLineSize];
H A Dsanitizer_allocator_primary64.h86 DCHECK_EQ(SpaceEnd() % kCacheLineSize, 0); in Init()
609 COMPILER_CHECK(sizeof(RegionInfo) % kCacheLineSize == 0);
H A Dsanitizer_allocator_primary32.h274 COMPILER_CHECK(sizeof(SizeClassInfo) % kCacheLineSize == 0);
H A Dsanitizer_common.h42 const uptr kCacheLineSize = SANITIZER_CACHE_LINE_SIZE; variable