HomeSort by relevance Sort by last modified time
    Searched refs:STO_MIPS_FLAGS (Results 1 - 3 of 3) sorted by null

  /toolchain/binutils/binutils-2.25/include/elf/
mips.h 832 #define STO_MIPS_FLAGS (~(STO_MIPS_ISA | ELF_ST_VISIBILITY (-1)))
841 ? ((other) & (~STO_MIPS16 & STO_MIPS_FLAGS)) \
842 : ((other) & STO_MIPS_FLAGS)) == STO_MIPS_PLT)
845 ? ((other) & (STO_MIPS16 | ~STO_MIPS_FLAGS)) \
846 : ((other) & ~STO_MIPS_FLAGS)) | STO_MIPS_PLT)
852 #define ELF_ST_IS_MIPS_PIC(other) (((other) & STO_MIPS_FLAGS) == STO_MIPS_PIC)
855 ? ((other) & ~(STO_MIPS16 | STO_MIPS_FLAGS)) \
856 : ((other) & ~STO_MIPS_FLAGS)) | STO_MIPS_PIC)
    [all...]
  /toolchain/binutils/binutils-2.25/elfcpp/
mips.h 299 STO_MIPS_FLAGS = ~(STO_MIPS_ISA | 0x3),
  /toolchain/binutils/binutils-2.25/gold/
mips.cc 1072 // (st_other & STO_MIPS_FLAGS) == STO_MIPS_PIC
1073 return ((this->nonvis() & (elfcpp::STO_MIPS_FLAGS >> 2))
1082 // (st_other & ~(STO_MIPS16 | STO_MIPS_FLAGS)) | STO_MIPS_PIC
1085 | (elfcpp::STO_MIPS_FLAGS >> 2)))
1088 // (other & ~STO_MIPS_FLAGS) | STO_MIPS_PIC
1089 this->set_nonvis((this->nonvis() & ~(elfcpp::STO_MIPS_FLAGS >> 2))
1098 // (st_other & (STO_MIPS16 | ~STO_MIPS_FLAGS)) | STO_MIPS_PLT
    [all...]

Completed in 76 milliseconds