OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:word_index
(Results
1 - 2
of
2
) sorted by null
/art/runtime/base/
bit_vector-inl.h
51
uint32_t
word_index
= start_index / kWordBits;
local
52
if (UNLIKELY(
word_index
== storage_size_)) {
55
uint32_t word = bit_storage_[
word_index
];
59
++
word_index
;
60
if (UNLIKELY(
word_index
== storage_size_)) {
63
word = bit_storage_[
word_index
];
65
return
word_index
* 32u + CTZ(word);
/art/runtime/gc/accounting/
bitmap-inl.h
34
const size_t
word_index
= BitIndexToWordIndex(bit_index);
local
36
auto* atomic_entry = reinterpret_cast<Atomic<uintptr_t>*>(&bitmap_begin_[
word_index
]);
135
const size_t
word_index
= BitIndexToWordIndex(bit_index);
local
137
uintptr_t* address = &bitmap_begin_[
word_index
];
Completed in 167 milliseconds