Lines Matching refs:r_bits

277       intern->r_symndx = (((int) ext->r_bits[0]  in mips_ecoff_swap_reloc_in()
279 | ((int) ext->r_bits[1] in mips_ecoff_swap_reloc_in()
281 | ((int) ext->r_bits[2] in mips_ecoff_swap_reloc_in()
283 intern->r_type = ((ext->r_bits[3] & RELOC_BITS3_TYPE_BIG) in mips_ecoff_swap_reloc_in()
285 intern->r_extern = (ext->r_bits[3] & RELOC_BITS3_EXTERN_BIG) != 0; in mips_ecoff_swap_reloc_in()
289 intern->r_symndx = (((int) ext->r_bits[0] in mips_ecoff_swap_reloc_in()
291 | ((int) ext->r_bits[1] in mips_ecoff_swap_reloc_in()
293 | ((int) ext->r_bits[2] in mips_ecoff_swap_reloc_in()
295 intern->r_type = (((ext->r_bits[3] & RELOC_BITS3_TYPE_LITTLE) in mips_ecoff_swap_reloc_in()
297 | ((ext->r_bits[3] & RELOC_BITS3_TYPEHI_LITTLE) in mips_ecoff_swap_reloc_in()
299 intern->r_extern = (ext->r_bits[3] & RELOC_BITS3_EXTERN_LITTLE) != 0; in mips_ecoff_swap_reloc_in()
321 ext->r_bits[0] = r_symndx >> RELOC_BITS0_SYMNDX_SH_LEFT_BIG; in mips_ecoff_swap_reloc_out()
322 ext->r_bits[1] = r_symndx >> RELOC_BITS1_SYMNDX_SH_LEFT_BIG; in mips_ecoff_swap_reloc_out()
323 ext->r_bits[2] = r_symndx >> RELOC_BITS2_SYMNDX_SH_LEFT_BIG; in mips_ecoff_swap_reloc_out()
324 ext->r_bits[3] = (((intern->r_type << RELOC_BITS3_TYPE_SH_BIG) in mips_ecoff_swap_reloc_out()
330 ext->r_bits[0] = r_symndx >> RELOC_BITS0_SYMNDX_SH_LEFT_LITTLE; in mips_ecoff_swap_reloc_out()
331 ext->r_bits[1] = r_symndx >> RELOC_BITS1_SYMNDX_SH_LEFT_LITTLE; in mips_ecoff_swap_reloc_out()
332 ext->r_bits[2] = r_symndx >> RELOC_BITS2_SYMNDX_SH_LEFT_LITTLE; in mips_ecoff_swap_reloc_out()
333 ext->r_bits[3] = (((intern->r_type << RELOC_BITS3_TYPE_SH_LITTLE) in mips_ecoff_swap_reloc_out()