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

/freebsd-13-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCSymbolELF.cpp60 uint32_t OtherFlags = getFlags() & ~(0x3 << ELF_STB_Shift); local
61 setFlags(OtherFlags | (Val << ELF_STB_Shift));
119 uint32_t OtherFlags = getFlags() & ~(0x7 << ELF_STT_Shift); local
120 setFlags(OtherFlags | (Val << ELF_STT_Shift));
149 uint32_t OtherFlags = getFlags() & ~(0x3 << ELF_STV_Shift); local
150 setFlags(OtherFlags | (Visibility << ELF_STV_Shift));
162 uint32_t OtherFlags = getFlags() & ~(0x7 << ELF_STO_Shift); local
163 setFlags(OtherFlags | (Other << ELF_STO_Shift));
172 uint32_t OtherFlags = getFlags() & ~(0x1 << ELF_WeakrefUsedInReloc_Shift); local
173 setFlags(OtherFlags | (
181 uint32_t OtherFlags = getFlags() & ~(0x1 << ELF_IsSignature_Shift); local
190 uint32_t OtherFlags = getFlags() & ~(0x1 << ELF_BindingSet_Shift); local
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DOperator.h239 void operator&=(const FastMathFlags &OtherFlags) { argument
240 Flags &= OtherFlags.Flags;

Completed in 47 milliseconds