OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:bit_index_
(Results
1 - 1
of
1
) sorted by null
/art/compiler/dex/
arena_bit_vector.h
38
bit_index_
(0),
47
if (
bit_index_
>= bit_size_) return -1;
49
uint32_t word_index =
bit_index_
/ 32;
52
word >>=
bit_index_
& 0x1f;
54
bit_index_
&= ~0x1f;
58
bit_index_
= bit_size_;
62
bit_index_
+= 32;
65
bit_index_
+= CTZ(word) + 1;
66
return
bit_index_
- 1;
78
uint32_t
bit_index_
; // Current index (size in bits)
member in class:art::ArenaBitVector::Iterator
[
all
...]
Completed in 55 milliseconds