Home | History | Annotate | Download | only in gold

Lines Matching refs:file_offset

828   return this->get_view(loc.file_offset, *plen, true, cache);
1653 off_t file_offset = this->next_file_offset_;
1654 gold_assert(this->size_ > 0 && file_offset > 0);
1656 file_offset = align_offset(file_offset, align);
1658 section.offset = file_offset;
1672 section_offset = file_offset - section.offset;
1673 section.size = file_offset + len - section.offset;
1675 ::fseek(this->fd_, file_offset, SEEK_SET);
1679 this->next_file_offset_ = file_offset + len;
1852 off_t file_offset = this->next_file_offset_;
1853 file_offset = align_offset(file_offset, sect.align);
1854 sect.offset = file_offset;
1856 this->next_file_offset_ = file_offset + sect.size;
1882 off_t file_offset = this->next_file_offset_;
1893 off_t shstrtab_off = file_offset;
1894 ::fseek(this->fd_, file_offset, 0);
1898 file_offset += shstrtab_len;
1903 file_offset = align_offset(file_offset, this->size_ == 32 ? 4 : 8);
1904 this->shoff_ = file_offset;
1905 ::fseek(this->fd_, file_offset, 0);
1961 off_t file_offset = this->next_file_offset_;
1962 file_offset = align_offset(file_offset, align);
1963 section.offset = file_offset;
1965 ::fseek(this->fd_, file_offset, SEEK_SET);
1968 this->next_file_offset_ = file_offset + len;