Searched refs:max_entries_ (Results 1 – 2 of 2) sorted by relevance
72 max_entries_(max_count), in IndirectReferenceTable()214 CHECK_GT(new_size, max_entries_); in Resize()236 max_entries_ = new_size; in Resize()257 if (top_index == max_entries_) { in Add()261 << "(max=" << max_entries_ << ")" in Add()268 if (std::numeric_limits<size_t>::max() / 2 < max_entries_) { in Add()271 << "(max=" << max_entries_ << ")" << std::endl in Add()279 if (!Resize(max_entries_ * 2, &inner_error_msg)) { in Add()282 << "(max=" << max_entries_ << ")" << std::endl in Add()488 if (top_index < max_entries_ && top_index + free_capacity <= max_entries_) { in EnsureFreeCapacity()[all …]
367 DCHECK_LT(table_index, max_entries_); in EncodeIndirectRef()379 DCHECK_LT(table_index, max_entries_); in ToIndirectRef()408 size_t max_entries_; variable