Searched refs:rel_off (Results 1 - 2 of 2) sorted by relevance

/haiku-fatelf/src/bin/gdb/bfd/
H A Dcoff-arm.c1020 insert_thumb_branch (br_insn, rel_off)
1022 int rel_off;
1027 BFD_ASSERT((rel_off & 1) != 1);
1029 rel_off >>= 1; /* half word aligned address */
1030 low_bits = rel_off & 0x000007FF; /* the bottom 11 bits */
1031 high_bits = (rel_off >> 11) & 0x000007FF; /* the top 11 bits */
H A Delf32-arm.h972 insert_thumb_branch (insn32 br_insn, int rel_off) argument
977 BFD_ASSERT ((rel_off & 1) != 1);
979 rel_off >>= 1; /* Half word aligned address. */
980 low_bits = rel_off & 0x000007FF; /* The bottom 11 bits. */
981 high_bits = (rel_off >> 11) & 0x000007FF; /* The top 11 bits. */

Completed in 57 milliseconds