Home
last modified time | relevance | path

Searched refs:top_index (Results 1 – 5 of 5) sorted by relevance

/art/runtime/
Dindirect_reference_table.cc177 if (last_known_previous_state_.top_index >= segment_state_.top_index || in RecoverHoles()
178 last_known_previous_state_.top_index < prev_state.top_index) { in RecoverHoles()
179 const size_t top_index = segment_state_.top_index; in RecoverHoles() local
180 size_t count = CountNullEntries(table_, prev_state.top_index, top_index); in RecoverHoles()
184 << " Current prev=" << prev_state.top_index in RecoverHoles()
185 << " Current top_index=" << top_index in RecoverHoles()
203 size_t count = CountNullEntries(table, prev_state.top_index, cur_state.top_index); in CheckHoleCount()
204 CHECK_EQ(exp_num_holes, count) << "prevState=" << prev_state.top_index in CheckHoleCount()
205 << " topIndex=" << cur_state.top_index; in CheckHoleCount()
243 LOG(INFO) << "+++ Add: previous_state=" << previous_state.top_index in Add()
[all …]
Dindirect_reference_table-inl.h47 const uint32_t top_index = segment_state_.top_index; in GetChecked() local
49 if (UNLIKELY(idx >= top_index)) { in GetChecked()
55 top_index); in GetChecked()
Dmonitor_pool.h138 size_t top_index = index / kMaxListSize; in LookupMonitor() local
141 uintptr_t base = monitor_chunks_[top_index][list_index]; in LookupMonitor()
Dindirect_reference_table.h147 uint32_t top_index; member
292 return segment_state_.top_index; in Capacity()
Djni_internal_test.cc2457 new_state.top_index = old_state.top_index ^ 0x07705005; in TEST_F()
2458 ASSERT_NE(old_state.top_index, new_state.top_index); in TEST_F()
2466 EXPECT_EQ(new_state.top_index, irt.GetSegmentState().top_index); in TEST_F()