Home
last modified time | relevance | path

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

/art/runtime/base/
Dbit_vector.cc262 for (uint32_t word = 0; word < storage_size_; word++) { in NumSetBits() local
263 count += POPCOUNT(storage_[word]); in NumSetBits()
388 for (uint32_t word = 0u; word < word_end; word++) { in NumSetBits() local
389 count += POPCOUNT(storage[word]); in NumSetBits()
Dbit_vector.h107 uint32_t word = bit_storage_[word_index]; in FindIndex() local
109 word &= static_cast<uint32_t>(-1) << (start_index & 0x1f); in FindIndex()
110 while (word == 0u) { in FindIndex()
115 word = bit_storage_[word_index]; in FindIndex()
117 return word_index * 32u + CTZ(word); in FindIndex()
/art/runtime/
Dglobals.h28 typedef intptr_t word; typedef
36 static constexpr size_t kWordSize = sizeof(word);
Dutils.h115 static inline bool IsInt(int N, word value) { in IsInt()
118 word limit = static_cast<word>(1) << (N - 1); in IsInt()
122 static inline bool IsUint(int N, word value) { in IsUint()
125 word limit = static_cast<word>(1) << N; in IsUint()
129 static inline bool IsAbsoluteUint(int N, word value) { in IsAbsoluteUint()
/art/runtime/gc/accounting/
Dcard_table-inl.h64 while (!IsAligned<sizeof(word)>(card_cur) && card_cur < card_end) { in Scan()
136 while (!IsAligned<sizeof(word)>(card_cur) && card_cur < card_end) { in ModifyCardsAtomic()
149 while (!IsAligned<sizeof(word)>(card_end) && card_end > card_cur) { in ModifyCardsAtomic()
/art/runtime/arch/arm/
Dportable_entrypoints_arm.S115 sub sp, #8 @ 2 words of space, bottom word will hold Method*
Dquick_entrypoints_arm.S46 sub sp, #12 @ 3 words of space, bottom word will hold Method*
71 sub sp, #4 @ bottom word will hold Method*
82 add sp, #4 @ bottom word holds Method*
94 add sp, #4 @ bottom word holds Method*
124 sub sp, #8 @ 2 words of space, bottom word will hold Method*
392 cbnz r2, .Lslow_lock @ lock word and self thread id's match -> recursive lock
/art/runtime/arch/mips/
Dquick_entrypoints_mips.S65 # 1 word for alignment, 4 open words for args $a0-$a3, bottom will hold Method*