Lines Matching refs:AllocatedUser
144 DCHECK_EQ(TotalBlocks, Sci->AllocatedUser / BlockSize); in verifyAllBlocksAreReleasedTestOnly()
164 Sci->AllocatedUser / BlockSize); in verifyAllBlocksAreReleasedTestOnly()
309 TotalMapped += Sci->AllocatedUser; in getStats()
404 uptr AllocatedUser GUARDED_BY(Mutex);
860 const uptr AllocatedUser = Size * NumberOfBlocks; in populateFreeList() local
861 C->getStats().add(StatFree, AllocatedUser); in populateFreeList()
862 DCHECK_LE(Sci->CurrentRegionAllocated + AllocatedUser, RegionSize); in populateFreeList()
866 if (RegionSize - (Sci->CurrentRegionAllocated + AllocatedUser) < Size) { in populateFreeList()
870 Sci->CurrentRegionAllocated += AllocatedUser; in populateFreeList()
872 Sci->AllocatedUser += AllocatedUser; in populateFreeList()
879 if (Sci->AllocatedUser == 0) in getStats()
884 const uptr BytesInFreeList = Sci->AllocatedUser - InUse * BlockSize; in getStats()
890 const uptr AvailableChunks = Sci->AllocatedUser / BlockSize; in getStats()
894 ClassId, getSizeByClassId(ClassId), Sci->AllocatedUser >> 10, in getStats()
922 const uptr TotalBlocks = Sci->AllocatedUser / BlockSize; in getSizeClassFragmentationInfo()
958 Sci->AllocatedUser -
1047 if (PushedBytesDelta < Sci->AllocatedUser / 16U) in hasChanceToReleasePages()