Lines Matching refs:Elf_Rela
1405 isRela ? sizeof(Elf_Rela) : sizeof(Elf_Rel)); in computeContents()
1727 this->entsize = config->isRela ? sizeof(Elf_Rela) : sizeof(Elf_Rel); in RelocationSection()
1733 auto *p = reinterpret_cast<Elf_Rela *>(buf); in writeTo()
1738 buf += config->isRela ? sizeof(Elf_Rela) : sizeof(Elf_Rel); in writeTo()
1831 std::vector<Elf_Rela> relatives, nonRelatives; in updateAllocSize()
1834 Elf_Rela r; in updateAllocSize()
1856 std::vector<Elf_Rela> ungroupedRelatives; in updateAllocSize()
1857 std::vector<std::vector<Elf_Rela>> relativeGroups; in updateAllocSize()
1859 std::vector<Elf_Rela> group; in updateAllocSize()
1882 llvm::sort(nonRelatives, [](const Elf_Rela &a, const Elf_Rela &b) { in updateAllocSize()
1902 std::vector<Elf_Rela> ungroupedNonRelatives; in updateAllocSize()
1903 std::vector<std::vector<Elf_Rela>> nonRelativeGroups; in updateAllocSize()
1917 llvm::sort(ungroupedNonRelatives, [](const Elf_Rela &a, const Elf_Rela &b) { in updateAllocSize()
1932 for (std::vector<Elf_Rela> &g : relativeGroups) { in updateAllocSize()
1965 for (Elf_Rela &r : ungroupedRelatives) { in updateAllocSize()
1976 for (ArrayRef<Elf_Rela> g : nonRelativeGroups) { in updateAllocSize()
1980 for (const Elf_Rela &r : g) { in updateAllocSize()
1991 for (Elf_Rela &r : ungroupedNonRelatives) { in updateAllocSize()