Home
last modified time | relevance | path

Searched refs:halfwords (Results 1 – 3 of 3) sorted by relevance

/linux/lib/
H A Dbitmap.c809 unsigned int i, halfwords; in bitmap_from_arr32() local
811 halfwords = DIV_ROUND_UP(nbits, 32); in bitmap_from_arr32()
812 for (i = 0; i < halfwords; i++) { in bitmap_from_arr32()
814 if (++i < halfwords) in bitmap_from_arr32()
820 bitmap[(halfwords - 1) / 2] &= BITMAP_LAST_WORD_MASK(nbits); in bitmap_from_arr32()
832 unsigned int i, halfwords; in bitmap_to_arr32() local
834 halfwords = DIV_ROUND_UP(nbits, 32); in bitmap_to_arr32()
835 for (i = 0; i < halfwords; i++) { in bitmap_to_arr32()
837 if (++i < halfwords) in bitmap_to_arr32()
843 buf[halfwords - 1] &= (u32) (UINT_MAX >> ((-nbits) & 31)); in bitmap_to_arr32()
/linux/arch/arm/probes/kprobes/
H A Dactions-thumb.c33 unsigned int halfwords; in t32_simulate_table_branch() local
36 halfwords = ((u16 *)rnv)[rmv]; in t32_simulate_table_branch()
38 halfwords = ((u8 *)rnv)[rmv]; in t32_simulate_table_branch()
40 regs->ARM_pc = pc + 2 * halfwords; in t32_simulate_table_branch()
/linux/arch/arm/kernel/
H A Dhead.S588 THUMB( strh r6, [r0], #2 ) @ For Thumb-2, store as two halfwords