Home
last modified time | relevance | path

Searched refs:OtherFlags (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCSymbolELF.cpp62 uint32_t OtherFlags = getFlags() & ~(0x3 << ELF_STB_Shift); in setBinding() local
63 setFlags(OtherFlags | (Val << ELF_STB_Shift)); in setBinding()
121 uint32_t OtherFlags = getFlags() & ~(0x7 << ELF_STT_Shift); in setType() local
122 setFlags(OtherFlags | (Val << ELF_STT_Shift)); in setType()
151 uint32_t OtherFlags = getFlags() & ~(0x3 << ELF_STV_Shift); in setVisibility() local
152 setFlags(OtherFlags | (Visibility << ELF_STV_Shift)); in setVisibility()
164 uint32_t OtherFlags = getFlags() & ~(0x7 << ELF_STO_Shift); in setOther() local
165 setFlags(OtherFlags | (Other << ELF_STO_Shift)); in setOther()
174 uint32_t OtherFlags = getFlags() & ~(0x1 << ELF_WeakrefUsedInReloc_Shift); in setIsWeakrefUsedInReloc() local
175 setFlags(OtherFlags | (1 << ELF_WeakrefUsedInReloc_Shift)); in setIsWeakrefUsedInReloc()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DFMF.h99 void operator&=(const FastMathFlags &OtherFlags) {
100 Flags &= OtherFlags.Flags;
102 void operator|=(const FastMathFlags &OtherFlags) {
103 Flags |= OtherFlags.Flags;
105 bool operator!=(const FastMathFlags &OtherFlags) const {
106 return Flags != OtherFlags.Flags;