Lines Matching refs:eSym
2199 auto *eSym = reinterpret_cast<Elf_Sym *>(buf); in writeTo() local
2206 eSym->st_name = ent.strTabOffset; in writeTo()
2207 eSym->setBindingAndType(sym->binding, sym->type); in writeTo()
2208 eSym->st_other = sym->stOther; in writeTo()
2213 eSym->st_shndx = SHN_COMMON; in writeTo()
2214 eSym->st_value = commonSec->addralign; in writeTo()
2215 eSym->st_size = cast<Defined>(sym)->size; in writeTo()
2219 eSym->st_shndx = shndx; in writeTo()
2220 eSym->st_value = sym->getVA(); in writeTo()
2226 eSym->st_size = shndx != SHN_UNDEF ? cast<Defined>(sym)->size : 0; in writeTo()
2228 eSym->st_shndx = 0; in writeTo()
2229 eSym->st_value = 0; in writeTo()
2230 eSym->st_size = 0; in writeTo()
2234 ++eSym; in writeTo()
2242 auto *eSym = reinterpret_cast<Elf_Sym *>(buf); in writeTo() local
2247 eSym->st_other |= STO_MIPS_PLT; in writeTo()
2259 eSym->st_value &= ~1; in writeTo()
2260 eSym->st_other |= STO_MIPS_MICROMIPS; in writeTo()
2266 eSym->st_other |= STO_MIPS_PIC; in writeTo()
2267 ++eSym; in writeTo()