Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/scudo/
H A Dscudo_allocator.h56 const uptr MinAlignmentLog = FIRST_32_SECOND_64(3, 4); variable
58 const uptr MinAlignment = 1 << MinAlignmentLog;
H A Dscudo_allocator.cpp93 getHeaderSize() - (Header->Offset << MinAlignmentLog)); in getBackendPtr()
102 (Header->Offset << MinAlignmentLog); in getUsableSize()
379 Header.Offset = (AlignedUserPtr - UserPtr) >> MinAlignmentLog; in allocate()
431 const uptr EstimatedSize = Size + (Header->Offset << MinAlignmentLog); in quarantineOrDeallocateChunk()
617 (MaxPrimaryAlignment - Chunk::getHeaderSize()) >> MinAlignmentLog; in performSanityChecks()
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dcombined.h487 Header.Offset = (Offset >> MinAlignmentLog) & Chunk::OffsetMask;
953 static const uptr MinAlignmentLog = SCUDO_MIN_ALIGNMENT_LOG; variable
955 static const uptr MinAlignment = 1UL << MinAlignmentLog;
1029 (MaxPrimaryAlignment - Chunk::getHeaderSize()) >> MinAlignmentLog; in performSanityChecks()
1054 (static_cast<uptr>(Header->Offset) << MinAlignmentLog)); in getBlockBegin()