Searched refs:word (Results 1 – 13 of 13) sorted by relevance
/art/runtime/base/ |
D | bit_vector-inl.h | 55 uint32_t word = bit_storage_[word_index]; in FindIndex() local 57 word &= static_cast<uint32_t>(-1) << (start_index & 0x1f); in FindIndex() 58 while (word == 0u) { in FindIndex() 63 word = bit_storage_[word_index]; in FindIndex() 65 return word_index * 32u + CTZ(word); in FindIndex()
|
D | bit_vector.cc | 234 for (uint32_t word = 0; word < storage_size_; word++) { in NumSetBits() local 235 count += POPCOUNT(storage_[word]); in NumSetBits() 320 for (uint32_t word = 0u; word < word_end; word++) { in NumSetBits() local 321 count += POPCOUNT(storage[word]); in NumSetBits()
|
/art/runtime/arch/arm/ |
D | asm_support_arm.S | 98 .word _GLOBAL_OFFSET_TABLE_-(.Lload_got_\name\()_1+4) 100 .word _ZN3art7Runtime9instance_E(GOT) 104 .word _GLOBAL_OFFSET_TABLE_-(.Lload_got_\name\()_2+4) 106 .word _ZN3art7Runtime9instance_E(GOT) 110 .word _GLOBAL_OFFSET_TABLE_-(.Lload_got_\name\()_3+4) 112 .word _ZN3art7Runtime9instance_E(GOT)
|
D | quick_entrypoints_arm.S | 51 sub sp, #12 @ 3 words of space, bottom word will hold Method* 78 sub sp, #4 @ bottom word will hold Method* 106 sub sp, #4 @ bottom word will hold Method* 122 add sp, #4 @ bottom word holds Method* 159 sub sp, #8 @ 2 words of space, bottom word will hold Method* 544 @ unlocked case - r1: original lock word that's zero except for the read barrier bits. 557 mov r3, r1 @ copy the lock word to check count overflow. 559 …add r2, r3, #LOCK_WORD_THIN_LOCK_COUNT_ONE @ increment count in lock word placing in r2 to che… 602 mov r3, r1 @ copy lock word to check thread id equality 606 cbnz r3, .Lslow_unlock @ do lock word and self thread id's match?
|
/art/runtime/interpreter/mterp/mips/ |
D | op_float_to_int.S | 44 .word 0x4f000000 46 .word 0xcf000000 48 .word 0x7fffffff 50 .word 0x80000000
|
D | op_double_to_int.S | 54 .dword 0xc1e0000000000000 # minint, as a double (high word) 56 .word 0x7fffffff 58 .word 0x80000000
|
D | op_const_wide.S | 6 or a0, a1 # a0 <- BBBBbbbb (low word) 10 or a1, a3, a2 # a1 <- HHHHhhhh (high word)
|
D | op_float_to_long.S | 48 .word 0x5f000000 51 .word 0xdf000000
|
D | op_double_to_long.S | 50 .dword 0x43e0000000000000 # maxlong, as a double (high word) 52 .dword 0xc3e0000000000000 # minlong, as a double (high word)
|
/art/runtime/interpreter/mterp/arm/ |
D | op_double_to_long.S | 14 mov r3, #0x43000000 @ maxlong, as a double (high word) 16 mov r2, #0 @ maxlong, as a double (low word) 28 mov r3, #0xc3000000 @ minlong, as a double (high word) 30 mov r2, #0 @ minlong, as a double (low word)
|
D | op_const_wide.S | 5 orr r0, r0, r1, lsl #16 @ r0<- BBBBbbbb (low word) 8 orr r1, r2, r3, lsl #16 @ r1<- HHHHhhhh (high word)
|
/art/runtime/arch/mips/ |
D | quick_entrypoints_mips.S | 78 # 1 word for holding Method* 125 # 2 words for alignment and bottom word will hold Method*
|
/art/runtime/interpreter/mterp/out/ |
D | mterp_arm.S | 782 orr r0, r0, r1, lsl #16 @ r0<- BBBBbbbb (low word) 785 orr r1, r2, r3, lsl #16 @ r1<- HHHHhhhh (high word) 7384 mov r3, #0x43000000 @ maxlong, as a double (high word) 7386 mov r2, #0 @ maxlong, as a double (low word) 7398 mov r3, #0xc3000000 @ minlong, as a double (high word) 7400 mov r2, #0 @ minlong, as a double (low word)
|