Lines Matching refs:Elf_Rela
1413 isRela ? sizeof(Elf_Rela) : sizeof(Elf_Rel)); in computeContents()
1721 this->entsize = config->isRela ? sizeof(Elf_Rela) : sizeof(Elf_Rel); in RelocationSection()
1727 auto *p = reinterpret_cast<Elf_Rela *>(buf); in writeTo()
1732 buf += config->isRela ? sizeof(Elf_Rela) : sizeof(Elf_Rel); in writeTo()
1811 std::vector<Elf_Rela> relatives, nonRelatives; in updateAllocSize()
1814 Elf_Rela r; in updateAllocSize()
1837 std::vector<Elf_Rela> ungroupedRelatives; in updateAllocSize()
1838 std::vector<std::vector<Elf_Rela>> relativeGroups; in updateAllocSize()
1840 std::vector<Elf_Rela> group; in updateAllocSize()
1863 llvm::stable_sort(nonRelatives, [](const Elf_Rela &a, const Elf_Rela &b) { in updateAllocSize()
1883 std::vector<Elf_Rela> ungroupedNonRelatives; in updateAllocSize()
1884 std::vector<std::vector<Elf_Rela>> nonRelativeGroups; in updateAllocSize()
1898 llvm::sort(ungroupedNonRelatives, [](const Elf_Rela &a, const Elf_Rela &b) { in updateAllocSize()
1913 for (std::vector<Elf_Rela> &g : relativeGroups) { in updateAllocSize()
1946 for (Elf_Rela &r : ungroupedRelatives) { in updateAllocSize()
1957 for (ArrayRef<Elf_Rela> g : nonRelativeGroups) { in updateAllocSize()
1961 for (const Elf_Rela &r : g) { in updateAllocSize()
1972 for (Elf_Rela &r : ungroupedNonRelatives) { in updateAllocSize()