Home
last modified time | relevance | path

Searched refs:GroupSizeLog (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dallocator_config.h58 static const uptr GroupSizeLog = 21U; member
65 static const uptr GroupSizeLog = 19U; member
105 static const uptr GroupSizeLog = 20U; member
110 static const uptr GroupSizeLog = 18U; member
148 static const uptr GroupSizeLog = 19U; member
152 static const uptr GroupSizeLog = 21U; member
177 static const uptr GroupSizeLog = 20U; member
H A Dallocator_config.def66 // then it pops out blocks in a new group. Therefore, `GroupSizeLog` is always
67 // smaller or equal to `RegionSizeLog`. Note that `GroupSizeLog` needs to be
70 PRIMARY_REQUIRED(const uptr, GroupSizeLog)
H A Dprimary64.h55 static const uptr GroupSizeLog = Config::getGroupSizeLog();
56 static_assert(RegionSizeLog >= GroupSizeLog,
58 static const uptr GroupScale = GroupSizeLog - CompactPtrScale;
83 const uptr GroupSize = (1UL << GroupSizeLog); in init()
290 if (GroupSizeLog < RegionSizeLog) { in pushBlocks()
1350 const uptr GroupSize = (1UL << GroupSizeLog); in collectGroupsToRelease()
1517 const uptr GroupSize = (1UL << GroupSizeLog); in markFreeBlocks()
H A Dprimary32.h48 static const uptr GroupSizeLog = Config::getGroupSizeLog();
179 const uptr Mask = (static_cast<uptr>(1) << GroupSizeLog) - 1; in compactPtrGroupBase()
443 static_assert(Config::getRegionSizeLog() == GroupSizeLog, in allocateRegionSlow()
1080 const uptr GroupSize = (1UL << GroupSizeLog); in markFreeBlocks()