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;
576 c->dataoff = static_cast<uint32_t>(section->fileOff);
593 c->dataoff = section->fileOff;
610 c->dataoff = section->fileOff;
1101 // `fileOff + fileSize == next segment fileOff`. So we call
1105 fileOff = alignToPowerOf2(fileOff, pageSize);
1108 seg->fileSize = fileOff - seg->fileOff;
1134 // No need to page-align fileOff / addr here since this is the last segment.
1136 linkEditSegment->fileSize = fileOff - linkEditSegment->fileOff;
1140 seg->fileOff = fileOff;
1146 fileOff = alignToPowerOf2(fileOff, osec->align);
1148 osec->fileOff = isZeroFill(osec->flags) ? 0 : fileOff;
1153 fileOff += osec->getFileSize();
1159 FileOutputBuffer::create(config->outputFile, fileOff,
1178 osec->writeTo(buf + osec->fileOff);
1233 uint8_t *buf = buffer->getBufferStart() + oseg->fileOff;