Home
last modified time | relevance | path

Searched refs:topIndex (Results 1 – 3 of 3) sorted by relevance

/art/runtime/
Dindirect_reference_table.cc108 size_t topIndex = segment_state_.parts.topIndex; in Add() local
115 if (topIndex == max_entries_) { in Add()
128 DCHECK_GT(topIndex, 1U); in Add()
130 IrtEntry* pScan = &table_[topIndex - 1]; in Add()
134 DCHECK_GE(pScan, table_ + prevState.parts.topIndex); in Add()
141 index = topIndex++; in Add()
142 segment_state_.parts.topIndex = topIndex; in Add()
147 LOG(INFO) << "+++ added at " << ExtractIndex(result) << " top=" << segment_state_.parts.topIndex in Add()
176 int topIndex = segment_state_.parts.topIndex; in Remove() local
177 int bottomIndex = prevState.parts.topIndex; in Remove()
[all …]
Dindirect_reference_table-inl.h43 const int topIndex = segment_state_.parts.topIndex; in GetChecked() local
45 if (UNLIKELY(idx >= topIndex)) { in GetChecked()
47 << iref << " (index " << idx << " in a table of size " << topIndex << ")"; in GetChecked()
Dindirect_reference_table.h191 uint32_t topIndex:16; /* index of first unused entry */ member
324 return segment_state_.parts.topIndex; in Capacity()