Lines Matching refs:bytes
128 uint64_t bytes = 0; in GetBytesAllocatedInternal() local
137 bytes += r->BytesAllocated(); in GetBytesAllocatedInternal()
141 bytes += r->BytesAllocated(); in GetBytesAllocatedInternal()
146 bytes += r->BytesAllocated(); in GetBytesAllocatedInternal()
151 bytes += r->BytesAllocated(); in GetBytesAllocatedInternal()
158 return bytes; in GetBytesAllocatedInternal()
163 uint64_t bytes = 0; in GetObjectsAllocatedInternal() local
172 bytes += r->ObjectsAllocated(); in GetObjectsAllocatedInternal()
176 bytes += r->ObjectsAllocated(); in GetObjectsAllocatedInternal()
181 bytes += r->ObjectsAllocated(); in GetObjectsAllocatedInternal()
186 bytes += r->ObjectsAllocated(); in GetObjectsAllocatedInternal()
193 return bytes; in GetObjectsAllocatedInternal()
499 size_t bytes; in BytesAllocated() local
501 bytes = thread_->GetTlabEnd() - begin_; in BytesAllocated()
503 bytes = static_cast<size_t>(Top() - begin_); in BytesAllocated()
505 DCHECK_LE(bytes, kRegionSize); in BytesAllocated()
506 return bytes; in BytesAllocated()