Lines Matching refs:isRela

1403     bool isRela = config->isRela;  in computeContents()  local
1404 addInt(isRela ? DT_RELAENT : DT_RELENT, in computeContents()
1405 isRela ? sizeof(Elf_Rela) : sizeof(Elf_Rel)); in computeContents()
1413 addInt(isRela ? DT_RELACOUNT : DT_RELCOUNT, numRelativeRels); in computeContents()
1463 addInt(DT_PLTREL, config->isRela ? DT_RELA : DT_REL); in computeContents()
1723 : RelocationBaseSection(name, config->isRela ? SHT_RELA : SHT_REL, in RelocationSection()
1724 config->isRela ? DT_RELA : DT_REL, in RelocationSection()
1725 config->isRela ? DT_RELASZ : DT_RELSZ, combreloc, in RelocationSection()
1727 this->entsize = config->isRela ? sizeof(Elf_Rela) : sizeof(Elf_Rel); in RelocationSection()
1736 if (config->isRela) in writeTo()
1738 buf += config->isRela ? sizeof(Elf_Rela) : sizeof(Elf_Rel); in writeTo()
1765 name, config->isRela ? SHT_ANDROID_RELA : SHT_ANDROID_REL, in AndroidPackedRelocationSection()
1766 config->isRela ? DT_ANDROID_RELA : DT_ANDROID_REL, in AndroidPackedRelocationSection()
1767 config->isRela ? DT_ANDROID_RELASZ : DT_ANDROID_RELSZ, in AndroidPackedRelocationSection()
1838 r.r_addend = config->isRela ? rel.computeAddend() : 0; in updateAllocSize()
1907 (!config->isRela || i->r_addend == j->r_addend)) in updateAllocSize()
1909 if (j - i < 3 || (config->isRela && i->r_addend != 0)) in updateAllocSize()
1922 config->isRela ? RELOCATION_GROUP_HAS_ADDEND_FLAG : 0; in updateAllocSize()
1939 if (config->isRela) { in updateAllocSize()
1950 if (config->isRela) { in updateAllocSize()
1968 if (config->isRela) { in updateAllocSize()
1995 if (config->isRela) { in updateAllocSize()
4706 StringRef relaDynName = config->isRela ? ".rela.dyn" : ".rel.dyn"; in createSyntheticSections()
4879 config->isRela ? ".rela.plt" : ".rel.plt", /*sort=*/false, in createSyntheticSections()