Home | History | Annotate | Download | only in runtime

Lines Matching refs:alloc_record_max_

318 size_t Dbg::alloc_record_max_ = 0;
4388 alloc_record_max_ = GetAllocTrackerMax();
4389 LOG(INFO) << "Enabling alloc tracker (" << alloc_record_max_ << " entries of "
4391 << PrettySize(sizeof(AllocRecord) * alloc_record_max_) << ")";
4394 recent_allocation_records_ = new AllocRecord[alloc_record_max_];
4460 if (++alloc_record_head_ == alloc_record_max_) {
4474 if (alloc_record_count_ < alloc_record_max_) {
4486 // alloc_record_max_ and then mask it back down.
4488 return (Dbg::alloc_record_head_ + 1 + Dbg::alloc_record_max_ - Dbg::alloc_record_count_) &
4489 (Dbg::alloc_record_max_ - 1);
4527 i = (i + 1) & (alloc_record_max_ - 1);
4608 * can be (kMaxAllocRecordStackDepth * alloc_record_max_) unique strings in
4652 idx = (idx + 1) & (alloc_record_max_ - 1);
4715 idx = (idx + 1) & (alloc_record_max_ - 1);