Lines Matching defs:AllocatedUser
125 // When all blocks are freed, it has to be the same size as `AllocatedUser`.
144 DCHECK_EQ(TotalBlocks, Sci->AllocatedUser / BlockSize);
164 Sci->AllocatedUser / BlockSize);
309 TotalMapped += Sci->AllocatedUser;
404 uptr AllocatedUser GUARDED_BY(Mutex);
860 const uptr AllocatedUser = Size * NumberOfBlocks;
861 C->getStats().add(StatFree, AllocatedUser);
862 DCHECK_LE(Sci->CurrentRegionAllocated + AllocatedUser, RegionSize);
866 if (RegionSize - (Sci->CurrentRegionAllocated + AllocatedUser) < Size) {
870 Sci->CurrentRegionAllocated += AllocatedUser;
872 Sci->AllocatedUser += AllocatedUser;
879 if (Sci->AllocatedUser == 0)
884 const uptr BytesInFreeList = Sci->AllocatedUser - InUse * BlockSize;
890 const uptr AvailableChunks = Sci->AllocatedUser / BlockSize;
894 ClassId, getSizeByClassId(ClassId), Sci->AllocatedUser >> 10,
922 const uptr TotalBlocks = Sci->AllocatedUser / BlockSize;
958 Sci->AllocatedUser -
1026 // BytesInFreeListAtLastCheckpoint AllocatedUser
1047 if (PushedBytesDelta < Sci->AllocatedUser / 16U)