Lines Matching refs:max_entries_
75 max_entries_(max_count), in IndirectReferenceTable()
102 max_entries_ = table_bytes / sizeof(IrtEntry); in IndirectReferenceTable()
219 CHECK_GT(new_size, max_entries_); in Resize()
243 max_entries_ = real_new_size; in Resize()
264 if (top_index == max_entries_) { in Add()
268 << "(max=" << max_entries_ << ")" in Add()
275 if (std::numeric_limits<size_t>::max() / 2 < max_entries_) { in Add()
278 << "(max=" << max_entries_ << ")" << std::endl in Add()
286 if (!Resize(max_entries_ * 2, &inner_error_msg)) { in Add()
289 << "(max=" << max_entries_ << ")" << std::endl in Add()
502 if (top_index < max_entries_ && top_index + free_capacity <= max_entries_) { in EnsureFreeCapacity()
531 return max_entries_ - segment_state_.top_index; in FreeCapacity()