Home
last modified time | relevance | path

Searched refs:fileOff (Results 1 – 7 of 7) sorted by relevance

/openbsd/src/gnu/llvm/lld/MachO/
DWriter.cpp72 uint64_t fileOff = 0; member in __anoned17fd3b0111::Writer
103 c->rebase_off = rebaseSection->fileOff; in writeTo()
107 c->bind_off = bindingSection->fileOff; in writeTo()
111 c->weak_bind_off = weakBindingSection->fileOff; in writeTo()
115 c->lazy_bind_off = lazyBindingSection->fileOff; in writeTo()
119 c->export_off = exportSection->fileOff; in writeTo()
167 c->dataoff = functionStartsSection->fileOff; in writeTo()
186 c->dataoff = dataInCodeSection->fileOff; in writeTo()
214 c->indirectsymoff = indirectSymtabSection->fileOff; in writeTo()
241 c->fileoff = seg->fileOff; in writeTo()
[all …]
DRelocations.cpp57 if (*off < seg->fileOff || *off >= seg->fileOff + seg->fileSize) in offsetToInputSection()
63 if (*off < sections[osecIdx]->fileOff) in offsetToInputSection()
69 *off -= osec->fileOff; in offsetToInputSection()
DOutputSection.h90 uint64_t fileOff = 0; variable
DOutputSegment.h50 uint64_t fileOff = 0; variable
DSyntheticSections.cpp1483 return (fileOff + blockSize - 1) / blockSize; in getBlockCount()
1493 uint8_t *hashes = buf + fileOff + allHeadersSize; in writeHashes()
1496 std::min(static_cast<size_t>(fileOff - i * blockSize), blockSize), in writeHashes()
1510 msync(buf, fileOff + getSize(), MS_INVALIDATE); in writeHashes()
1536 write32be(&codeDirectory->codeLimit, fileOff); in writeTo()
1547 write64be(&codeDirectory->execSegBase, textSeg->fileOff); in writeTo()
/openbsd/src/gnu/llvm/lld/COFF/
DWriter.cpp1316 uint64_t fileOff = fileSize; in createSymbolAndStringTable() local
1317 pointerToSymbolTable = fileOff; in createSymbolAndStringTable()
1318 fileOff += outputSymtab.size() * sizeof(coff_symbol16); in createSymbolAndStringTable()
1319 fileOff += 4 + strtab.size(); in createSymbolAndStringTable()
1320 fileSize = alignTo(fileOff, ctx.config.fileAlign); in createSymbolAndStringTable()
/openbsd/src/gnu/llvm/lld/MachO/Arch/
DARM64.cpp621 buf = outBuf + section->outSecOff + section->parent->fileOff; in applyOptimizationHints()