Searched refs:Relas (Results 1 – 2 of 2) sorted by relevance
412 std::vector<Elf_Rela> Relas; in decodeCrel() local420 Relas.resize(Count); in decodeCrel()426 Relas[I].r_offset = Crel.r_offset; in decodeCrel()427 Relas[I].setSymbolAndType(Crel.r_symidx, Crel.r_type, false); in decodeCrel()428 Relas[I++].r_addend = Crel.r_addend; in decodeCrel()436 return std::make_pair(std::move(Rels), std::move(Relas)); in decodeCrel()748 Expected<typename ELFFile<ELFT>::Elf_Rela_Range> Relas = EF.relas(*RelaSec); in decodeBBAddrMapImpl() local749 if (!Relas) in decodeBBAddrMapImpl()752 toString(Relas.takeError())); in decodeBBAddrMapImpl()753 for (typename ELFFile<ELFT>::Elf_Rela Rela : *Relas) in decodeBBAddrMapImpl()
1906 Expected<typename ELFFile<ELFT>::Elf_Rela_Range> Relas = in readSections() local1908 if (!Relas) in readSections()1909 return Relas.takeError(); in readSections()1911 if (Error Err = initRelocations(RelSec, *Relas)) in readSections()