Home
last modified time | relevance | path

Searched refs:BytesInBG (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dprimary32.h1105 const uptr BytesInBG = NumBlocks * BlockSize; in markFreeBlocks() local
1108 if (BytesInBG <= BG.BytesInBGAtLastCheckpoint) { in markFreeBlocks()
1109 BG.BytesInBGAtLastCheckpoint = BytesInBG; in markFreeBlocks()
1113 const uptr PushedBytesDelta = BytesInBG - BG.BytesInBGAtLastCheckpoint; in markFreeBlocks()
1120 if (isSmallBlock(BlockSize) && (BytesInBG * 100U) / AllocatedGroupSize < in markFreeBlocks()
1128 BG.BytesInBGAtLastCheckpoint = BytesInBG; in markFreeBlocks()
H A Dprimary64.h1386 const uptr BytesInBG = NumBlocks * BlockSize; in collectGroupsToRelease() local
1388 if (BytesInBG <= BG->BytesInBGAtLastCheckpoint) { in collectGroupsToRelease()
1389 BG->BytesInBGAtLastCheckpoint = BytesInBG; in collectGroupsToRelease()
1395 const uptr PushedBytesDelta = BytesInBG - BG->BytesInBGAtLastCheckpoint; in collectGroupsToRelease()
1408 const bool HighDensity = BytesInBG >= ReleaseThreshold; in collectGroupsToRelease()
1419 DCHECK_LE(BytesInBG, ReleaseThreshold); in collectGroupsToRelease()
1431 ReleaseThreshold - BytesInBG + PushedBytesDelta); in collectGroupsToRelease()
1490 Cur->BytesInBGAtLastCheckpoint = BytesInBG; in collectGroupsToRelease()