Lines Matching refs:eSym
2247 auto *eSym = reinterpret_cast<Elf_Sym *>(buf); in writeTo() local
2254 eSym->st_name = ent.strTabOffset; in writeTo()
2255 eSym->setBindingAndType(sym->binding, sym->type); in writeTo()
2256 eSym->st_other = sym->stOther; in writeTo()
2261 eSym->st_shndx = SHN_COMMON; in writeTo()
2262 eSym->st_value = commonSec->addralign; in writeTo()
2263 eSym->st_size = cast<Defined>(sym)->size; in writeTo()
2267 eSym->st_shndx = shndx; in writeTo()
2268 eSym->st_value = sym->getVA(); in writeTo()
2274 eSym->st_size = shndx != SHN_UNDEF ? cast<Defined>(sym)->size : 0; in writeTo()
2276 eSym->st_shndx = 0; in writeTo()
2277 eSym->st_value = 0; in writeTo()
2278 eSym->st_size = 0; in writeTo()
2282 ++eSym; in writeTo()
2290 auto *eSym = reinterpret_cast<Elf_Sym *>(buf); in writeTo() local
2295 eSym->st_other |= STO_MIPS_PLT; in writeTo()
2307 eSym->st_value &= ~1; in writeTo()
2308 eSym->st_other |= STO_MIPS_MICROMIPS; in writeTo()
2314 eSym->st_other |= STO_MIPS_PIC; in writeTo()
2315 ++eSym; in writeTo()