Home
last modified time | relevance | path

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

/art/runtime/base/
Dbit_vector.h103 uint32_t word_index = start_index / kWordBits; in FindIndex() local
104 if (UNLIKELY(word_index == storage_size_)) { in FindIndex()
107 uint32_t word = bit_storage_[word_index]; in FindIndex()
111 ++word_index; in FindIndex()
112 if (UNLIKELY(word_index == storage_size_)) { in FindIndex()
115 word = bit_storage_[word_index]; in FindIndex()
117 return word_index * 32u + CTZ(word); in FindIndex()