Lines Matching defs:fileOff
71 uint64_t fileOff = 0;
102 c->rebase_off = rebaseSection->fileOff;
106 c->bind_off = bindingSection->fileOff;
110 c->weak_bind_off = weakBindingSection->fileOff;
114 c->lazy_bind_off = lazyBindingSection->fileOff;
118 c->export_off = exportSection->fileOff;
166 c->dataoff = functionStartsSection->fileOff;
185 c->dataoff = dataInCodeSection->fileOff;
213 c->indirectsymoff = indirectSymtabSection->fileOff;
240 c->fileoff = seg->fileOff;
261 sectHdr->offset = osec->fileOff;
287 in.stubs->fileOff + config->entry->stubsIndex * target->stubSize;
306 c->symoff = symtabSection->fileOff;
308 c->stroff = stringTableSection->fileOff;
601 c->dataoff = static_cast<uint32_t>(section->fileOff);
618 c->dataoff = section->fileOff;
635 c->dataoff = section->fileOff;
1128 // `fileOff + fileSize == next segment fileOff`. So we call
1132 fileOff = alignToPowerOf2(fileOff, pageSize);
1135 seg->fileSize = fileOff - seg->fileOff;
1161 // No need to page-align fileOff / addr here since this is the last segment.
1163 linkEditSegment->fileSize = fileOff - linkEditSegment->fileOff;
1167 seg->fileOff = fileOff;
1173 fileOff = alignToPowerOf2(fileOff, osec->align);
1175 osec->fileOff = isZeroFill(osec->flags) ? 0 : fileOff;
1180 fileOff += osec->getFileSize();
1186 FileOutputBuffer::create(config->outputFile, fileOff,
1205 osec->writeTo(buf + osec->fileOff);
1260 uint8_t *buf = buffer->getBufferStart() + oseg->fileOff;