Home
last modified time | relevance | path

Searched refs:max_entries_ (Results 1 – 2 of 2) sorted by relevance

/art/runtime/
Dindirect_reference_table.cc75 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()
[all …]
Dindirect_reference_table.h375 DCHECK_LT(table_index, max_entries_); in EncodeIndirectRef()
387 DCHECK_LT(table_index, max_entries_); in ToIndirectRef()
416 size_t max_entries_; variable