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