Searched refs:word (Results 1 – 8 of 8) sorted by relevance
/art/runtime/base/ |
D | bit_vector.cc | 262 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()
|
D | bit_vector.h | 107 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/ |
D | globals.h | 28 typedef intptr_t word; typedef 36 static constexpr size_t kWordSize = sizeof(word);
|
D | utils.h | 115 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/ |
D | card_table-inl.h | 64 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/ |
D | portable_entrypoints_arm.S | 115 sub sp, #8 @ 2 words of space, bottom word will hold Method*
|
D | quick_entrypoints_arm.S | 46 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/ |
D | quick_entrypoints_mips.S | 65 # 1 word for alignment, 4 open words for args $a0-$a3, bottom will hold Method*
|