Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dprimary64.h676 BG->MaxCachedPerBatch = in pushBatchClassBlocks()
710 static_cast<u16>(BG->MaxCachedPerBatch - CurBatch->getCount()); in pushBatchClassBlocks()
721 UnusedSlots = static_cast<u16>(BG->MaxCachedPerBatch - 1); in pushBatchClassBlocks()
777 DCHECK_GE(BG->MaxCachedPerBatch, CurBatch->getCount());
779 static_cast<u16>(BG->MaxCachedPerBatch - CurBatch->getCount());
785 UnusedSlots = BG->MaxCachedPerBatch;
1514 DCHECK_EQ(It.getCount(), BG.MaxCachedPerBatch); in markFreeBlocks()
1587 const uptr MaxCachedPerBatch = BG->MaxCachedPerBatch; in mergeGroupsToReleaseBack() local
1592 if (Cur->Batches.front()->getCount() == MaxCachedPerBatch) { in mergeGroupsToReleaseBack()
1601 if (BG->Batches.front()->getCount() == MaxCachedPerBatch) { in mergeGroupsToReleaseBack()
[all …]
H A Dprimary32.h546 BG->MaxCachedPerBatch = in pushBatchClassBlocks()
580 static_cast<u16>(BG->MaxCachedPerBatch - CurBatch->getCount()); in pushBatchClassBlocks()
591 UnusedSlots = static_cast<u16>(BG->MaxCachedPerBatch - 1); in pushBatchClassBlocks()
637 BG->MaxCachedPerBatch = CacheT::getMaxCached(getSizeByClassId(ClassId));
648 DCHECK_GE(BG->MaxCachedPerBatch, CurBatch->getCount());
650 static_cast<u16>(BG->MaxCachedPerBatch - CurBatch->getCount());
656 UnusedSlots = BG->MaxCachedPerBatch;
1096 const uptr NumBlocks = (BG.Batches.size() - 1) * BG.MaxCachedPerBatch + in markFreeBlocks()
H A Dallocator_common.h72 u16 MaxCachedPerBatch; member