Lines Matching refs:other
832 #define ELF_ST_IS_MIPS_PLT(other) \ argument
833 ((ELF_ST_IS_MIPS16 (other) \
834 ? ((other) & (~STO_MIPS16 & STO_MIPS_FLAGS)) \
835 : ((other) & STO_MIPS_FLAGS)) == STO_MIPS_PLT)
836 #define ELF_ST_SET_MIPS_PLT(other) \ argument
837 ((ELF_ST_IS_MIPS16 (other) \
838 ? ((other) & (STO_MIPS16 | ~STO_MIPS_FLAGS)) \
839 : ((other) & ~STO_MIPS_FLAGS)) | STO_MIPS_PLT)
845 #define ELF_ST_IS_MIPS_PIC(other) (((other) & STO_MIPS_FLAGS) == STO_MIPS_PIC) argument
846 #define ELF_ST_SET_MIPS_PIC(other) \ argument
847 ((ELF_ST_IS_MIPS16 (other) \
848 ? ((other) & ~(STO_MIPS16 | STO_MIPS_FLAGS)) \
849 : ((other) & ~STO_MIPS_FLAGS)) | STO_MIPS_PIC)
853 #define ELF_ST_IS_MIPS16(other) (((other) & STO_MIPS16) == STO_MIPS16) argument
854 #define ELF_ST_SET_MIPS16(other) ((other) | STO_MIPS16) argument
860 #define ELF_ST_IS_MICROMIPS(other) (((other) & STO_MIPS_ISA) == STO_MICROMIPS) argument
861 #define ELF_ST_SET_MICROMIPS(other) (((other) & ~STO_MIPS_ISA) | STO_MICROMIPS) argument
865 #define ELF_ST_IS_COMPRESSED(other) \ argument
866 (ELF_ST_IS_MIPS16 (other) || ELF_ST_IS_MICROMIPS (other))
873 #define ELF_MIPS_IS_OPTIONAL(other) ((other) & STO_OPTIONAL) argument