Searched refs:word (Results 1 - 5 of 5) sorted by relevance

/art/runtime/base/
H A Dbit_vector-inl.h55 uint32_t word = bit_storage_[word_index]; local
56 // Mask out any bits in the first word we've already considered.
57 word &= static_cast<uint32_t>(-1) << (start_index & 0x1f);
58 while (word == 0u) {
63 word = bit_storage_[word_index];
65 return word_index * 32u + CTZ(word);
H A Dbit_vector.cc37 static_assert(sizeof(*storage_) == kWordBytes, "word bytes");
38 static_assert(sizeof(*storage_) * 8u == kWordBits, "word bits");
106 // Compare each 32-bit word.
234 for (uint32_t word = 0; word < storage_size_; word++) {
235 count += POPCOUNT(storage_[word]);
324 for (uint32_t word = 0u; word < word_end; word
[all...]
/art/runtime/arch/arm/
H A Dasm_support_arm.S93 .word _GLOBAL_OFFSET_TABLE_-(.Lload_got_\name\()_1+4)
95 .word _ZN3art7Runtime9instance_E(GOT)
99 .word _GLOBAL_OFFSET_TABLE_-(.Lload_got_\name\()_2+4)
101 .word _ZN3art7Runtime9instance_E(GOT)
105 .word _GLOBAL_OFFSET_TABLE_-(.Lload_got_\name\()_3+4)
107 .word _ZN3art7Runtime9instance_E(GOT)
H A Dquick_entrypoints_arm.S44 sub sp, #12 @ 3 words of space, bottom word will hold Method*
72 sub sp, #4 @ bottom word will hold Method*
87 add sp, #4 @ bottom word holds Method*
124 sub sp, #8 @ 2 words of space, bottom word will hold Method*
475 @ unlocked case - r1: original lock word that's zero except for the read barrier bits.
481 .Lnot_unlocked: @ r1: original lock word, r2: thread_id with count of 0 and zero read barrier bits
486 cbnz r2, .Lslow_lock @ lock word and self thread id's match -> recursive lock
488 mov r3, r1 @ copy the lock word to check count overflow.
490 add r2, r3, #LOCK_WORD_THIN_LOCK_COUNT_ONE @ increment count in lock word placing in r2 to check overflow
524 mov r3, r1 @ copy lock word t
[all...]
/art/runtime/arch/mips/
H A Dquick_entrypoints_mips.S34 * Callee-save: $s0-$s8 + $gp + $ra, 11 total + 1 word for Method*
78 # 1 word for holding Method*
94 * callee-save: $s2-$s8 + $gp + $ra, 9 total + 2 words padding + 1 word to hold Method*
126 # 2 words for alignment and bottom word will hold Method*
1275 * $a0: low word
1276 * $a1: high word
1303 * $a0: low word
1304 * $a1: high word
1331 * r0: low word
1332 * r1: high word
[all...]

Completed in 334 milliseconds