Searched refs:inputOff (Results 1 - 6 of 6) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/lld/ELF/
H A DInputSection.h259 : inputOff(off), live(live || !config->gcSections), hash(hash >> 1) {}
261 uint32_t inputOff; member in struct:lld::elf::SectionPiece
293 size_t begin = pieces[i].inputOff;
295 (pieces.size() - 1 == i) ? data().size() : pieces[i + 1].inputOff;
315 : inputOff(off), sec(sec), size(size), firstRelocation(firstRelocation) {}
318 return {sec->data().data() + this->inputOff, size};
321 size_t inputOff; member in struct:lld::elf::EhSectionPiece
H A DMapFile.cpp115 if (last.sec == p.sec && last.inputOff + last.size == p.inputOff &&
137 << Twine::utohexstr(p.inputOff) + ")\n";
H A DMarkLive.cpp154 uint64_t pieceEnd = piece.inputOff + piece.size;
H A DRelocations.cpp1001 // sorted by inputOff.
1006 while (i != pieces.size() && pieces[i].inputOff + pieces[i].size <= off)
1012 assert(pieces[i].inputOff <= off && "Relocation not in any piece");
1017 return pieces[i].outputOff + off - pieces[i].inputOff;
H A DInputSection.cpp1393 pieces, [=](SectionPiece p) { return p.inputOff <= offset; });
1405 uint64_t addend = offset - piece.inputOff;
H A DSyntheticSections.cpp412 size_t offset = piece.inputOff;

Completed in 120 milliseconds