Lines Matching refs:eSym
2226 auto *eSym = reinterpret_cast<Elf_Sym *>(buf); in writeTo() local
2233 eSym->st_name = ent.strTabOffset; in writeTo()
2234 eSym->setBindingAndType(sym->binding, sym->type); in writeTo()
2235 eSym->st_other = sym->visibility; in writeTo()
2240 eSym->st_other |= sym->stOther & 0xe0; in writeTo()
2244 eSym->st_other |= sym->stOther & STO_AARCH64_VARIANT_PCS; in writeTo()
2249 eSym->st_shndx = SHN_COMMON; in writeTo()
2250 eSym->st_value = commonSec->alignment; in writeTo()
2251 eSym->st_size = cast<Defined>(sym)->size; in writeTo()
2255 eSym->st_shndx = shndx; in writeTo()
2256 eSym->st_value = sym->getVA(); in writeTo()
2262 eSym->st_size = shndx != SHN_UNDEF ? cast<Defined>(sym)->size : 0; in writeTo()
2264 eSym->st_shndx = 0; in writeTo()
2265 eSym->st_value = 0; in writeTo()
2266 eSym->st_size = 0; in writeTo()
2270 ++eSym; in writeTo()
2278 auto *eSym = reinterpret_cast<Elf_Sym *>(buf); in writeTo() local
2283 eSym->st_other |= STO_MIPS_PLT; in writeTo()
2295 eSym->st_value &= ~1; in writeTo()
2296 eSym->st_other |= STO_MIPS_MICROMIPS; in writeTo()
2302 eSym->st_other |= STO_MIPS_PIC; in writeTo()
2303 ++eSym; in writeTo()