Home
last modified time | relevance | path

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

/art/runtime/
Dindirect_reference_table.cc90 size_t topIndex = segment_state_.parts.topIndex; in Add() local
97 if (topIndex == max_entries_) { in Add()
110 DCHECK_GT(topIndex, 1U); in Add()
112 IrtEntry* pScan = &table_[topIndex - 1]; in Add()
116 DCHECK_GE(pScan, table_ + prevState.parts.topIndex); in Add()
123 index = topIndex++; in Add()
124 segment_state_.parts.topIndex = topIndex; in Add()
129 LOG(INFO) << "+++ added at " << ExtractIndex(result) << " top=" << segment_state_.parts.topIndex in Add()
156 int topIndex = segment_state_.parts.topIndex; in Remove() local
157 int bottomIndex = prevState.parts.topIndex; in Remove()
[all …]
Dindirect_reference_table-inl.h41 const int topIndex = segment_state_.parts.topIndex; in GetChecked() local
43 if (UNLIKELY(idx >= topIndex)) { in GetChecked()
45 << iref << " (index " << idx << " in a table of size " << topIndex << ")"; in GetChecked()
Dindirect_reference_table.h194 uint32_t topIndex:16; /* index of first unused entry */ member
323 return segment_state_.parts.topIndex; in Capacity()