Home
last modified time | relevance | path

Searched refs:OtherFlags (Results 1 – 3 of 3) 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()
119 uint32_t OtherFlags = getFlags() & ~(0x7 << ELF_STT_Shift); in setType() local
120 setFlags(OtherFlags | (Val << ELF_STT_Shift)); in setType()
149 uint32_t OtherFlags = getFlags() & ~(0x3 << ELF_STV_Shift); in setVisibility() local
150 setFlags(OtherFlags | (Visibility << ELF_STV_Shift)); in setVisibility()
162 uint32_t OtherFlags = getFlags() & ~(0x7 << ELF_STO_Shift); in setOther() local
163 setFlags(OtherFlags | (Other << ELF_STO_Shift)); in setOther()
172 uint32_t OtherFlags = getFlags() & ~(0x1 << ELF_Weakref_Shift); in setIsWeakref() local
173 setFlags(OtherFlags | (1 << ELF_Weakref_Shift)); in setIsWeakref()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DFMF.h98 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;
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSelectionDAGNodes.h482 void operator&=(const SDNodeFlags &OtherFlags) { Flags &= OtherFlags.Flags; }
483 void operator|=(const SDNodeFlags &OtherFlags) { Flags |= OtherFlags.Flags; }