Home
last modified time | relevance | path

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

/aosp12/art/runtime/
H A Dindirect_reference_table.cc186 if (last_known_previous_state_.top_index >= segment_state_.top_index || in RecoverHoles()
187 last_known_previous_state_.top_index < prev_state.top_index) { in RecoverHoles()
188 const size_t top_index = segment_state_.top_index; in RecoverHoles() local
189 size_t count = CountNullEntries(table_, prev_state.top_index, top_index); in RecoverHoles()
258 size_t top_index = segment_state_.top_index; in Add() local
319 index = top_index++; in Add()
320 segment_state_.top_index = top_index; in Add()
359 const uint32_t top_index = segment_state_.top_index; in Remove() local
429 segment_state_.top_index = top_index - 1; in Remove()
501 size_t top_index = segment_state_.top_index; in EnsureFreeCapacity() local
[all …]
H A Dindirect_reference_table-inl.h40 const uint32_t top_index = segment_state_.top_index; in IsValidReference() local
42 if (UNLIKELY(idx >= top_index)) { in IsValidReference()
45 top_index); in IsValidReference()
85 DCHECK_LT(idx, segment_state_.top_index); in Get()
96 DCHECK_LT(idx, segment_state_.top_index); in Update()
H A Dmonitor_pool.h144 size_t top_index = index / kMaxListSize; in LookupMonitor() local
147 uintptr_t base = monitor_chunks_[top_index][list_index]; in LookupMonitor()
H A Dindirect_reference_table.h146 uint32_t top_index; member
295 return segment_state_.top_index; in Capacity()
/aosp12/art/runtime/jni/
H A Djni_internal_test.cc2578 new_state.top_index = old_state.top_index ^ 0x07705005; in TEST_F()
2579 ASSERT_NE(old_state.top_index, new_state.top_index); in TEST_F()
2587 EXPECT_EQ(new_state.top_index, irt.GetSegmentState().top_index); in TEST_F()