Lines Matching refs:off_
452 : archive_(archive), off_(off) in const_iterator()
466 if (this->off_ == this->archive_->file().filesize()) in operator ++()
468 this->off_ += sizeof(Archive_header); in operator ++()
470 this->off_ += this->header_.size; in operator ++()
471 if ((this->off_ & 1) != 0) in operator ++()
472 ++this->off_; in operator ++()
487 { return this->off_ == p->off; } in operator ==()
491 { return this->off_ != p->off; } in operator !=()
500 off_t off_; member in gold::Archive::const_iterator
513 if (filesize - this->off_ < static_cast<off_t>(sizeof(Archive_header))) in read_next_header()
515 if (filesize != this->off_) in read_next_header()
519 static_cast<size_t>(this->off_)); in read_next_header()
520 this->off_ = filesize; in read_next_header()
527 this->archive_->file().read(this->off_, sizeof(Archive_header), buf); in read_next_header()
530 off_t size = this->archive_->interpret_header(hdr, this->off_, in read_next_header()
540 this->header_.off = this->off_; in read_next_header()
546 this->off_ += sizeof(Archive_header) + this->header_.size; in read_next_header()
547 if ((this->off_ & 1) != 0) in read_next_header()
548 ++this->off_; in read_next_header()