Searched refs:OtherFlags (Results 1 – 3 of 3) sorted by relevance
62 uint32_t OtherFlags = getFlags() & ~(0x3 << ELF_STB_Shift); in setBinding() local63 setFlags(OtherFlags | (Val << ELF_STB_Shift)); in setBinding()119 uint32_t OtherFlags = getFlags() & ~(0x7 << ELF_STT_Shift); in setType() local120 setFlags(OtherFlags | (Val << ELF_STT_Shift)); in setType()149 uint32_t OtherFlags = getFlags() & ~(0x3 << ELF_STV_Shift); in setVisibility() local150 setFlags(OtherFlags | (Visibility << ELF_STV_Shift)); in setVisibility()162 uint32_t OtherFlags = getFlags() & ~(0x7 << ELF_STO_Shift); in setOther() local163 setFlags(OtherFlags | (Other << ELF_STO_Shift)); in setOther()172 uint32_t OtherFlags = getFlags() & ~(0x1 << ELF_Weakref_Shift); in setIsWeakref() local173 setFlags(OtherFlags | (1 << ELF_Weakref_Shift)); in setIsWeakref()[all …]
98 void operator&=(const FastMathFlags &OtherFlags) {99 Flags &= OtherFlags.Flags;101 void operator|=(const FastMathFlags &OtherFlags) {102 Flags |= OtherFlags.Flags;104 bool operator!=(const FastMathFlags &OtherFlags) const {105 return Flags != OtherFlags.Flags;
482 void operator&=(const SDNodeFlags &OtherFlags) { Flags &= OtherFlags.Flags; }483 void operator|=(const SDNodeFlags &OtherFlags) { Flags |= OtherFlags.Flags; }