HomeSort by relevance Sort by last modified time
    Searched defs:OtherFlags (Results 1 - 2 of 2) sorted by null

  /external/swiftshader/third_party/LLVM/lib/MC/
MCELF.cpp 25 uint32_t OtherFlags = SD.getFlags() & ~(0xf << ELF_STB_Shift);
26 SD.setFlags(OtherFlags | (Binding << ELF_STB_Shift));
42 uint32_t OtherFlags = SD.getFlags() & ~(0xf << ELF_STT_Shift);
43 SD.setFlags(OtherFlags | (Type << ELF_STT_Shift));
59 uint32_t OtherFlags = SD.getFlags() & ~(0x3 << ELF_STV_Shift);
60 SD.setFlags(OtherFlags | (Visibility << ELF_STV_Shift));
  /external/llvm/lib/MC/
MCSymbolELF.cpp 62 uint32_t OtherFlags = getFlags() & ~(0x3 << ELF_STB_Shift);
63 setFlags(OtherFlags | (Val << ELF_STB_Shift));
121 uint32_t OtherFlags = getFlags() & ~(0x7 << ELF_STT_Shift);
122 setFlags(OtherFlags | (Val << ELF_STT_Shift));
151 uint32_t OtherFlags = getFlags() & ~(0x3 << ELF_STV_Shift);
152 setFlags(OtherFlags | (Visibility << ELF_STV_Shift));
166 uint32_t OtherFlags = getFlags() & ~(0x7 << ELF_STO_Shift);
167 setFlags(OtherFlags | (Other << ELF_STO_Shift));
176 uint32_t OtherFlags = getFlags() & ~(0x1 << ELF_WeakrefUsedInReloc_Shift);
177 setFlags(OtherFlags | (1 << ELF_WeakrefUsedInReloc_Shift))
    [all...]

Completed in 64 milliseconds