Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dallocator_config.h60 static const uptr CompactPtrScale = 0; member
104 static const uptr CompactPtrScale = SCUDO_MIN_ALIGNMENT_LOG; member
157 static const uptr CompactPtrScale = SCUDO_MIN_ALIGNMENT_LOG; member
181 static const uptr CompactPtrScale = SCUDO_MIN_ALIGNMENT_LOG; member
H A Dallocator_config.def82 PRIMARY_OPTIONAL(const uptr, CompactPtrScale, SCUDO_MIN_ALIGNMENT_LOG)
104 // to, in increments of a power-of-2 scale. See `CompactPtrScale` also.
H A Dprimary64.h53 static const uptr CompactPtrScale = Config::getCompactPtrScale();
58 static const uptr GroupScale = GroupSizeLog - CompactPtrScale;
69 ? roundUp(sizeof(TransferBatchT), 1U << CompactPtrScale) in getSizeByClassId()
580 return static_cast<CompactPtrT>((Ptr - Base) >> CompactPtrScale); in compactPtrInternal()
584 return Base + (static_cast<uptr>(CompactPtr) << CompactPtrScale); in decompactPtrInternal()
593 return Base + (CompactPtrGroupBase << CompactPtrScale); in decompactGroupBase()