Lines Matching refs:eback
353 else if (__rhs.eback())
355 if (__rhs.eback() == __rhs.__intbuf_)
356 this->setg(__intbuf_, __intbuf_ + (__rhs.gptr() - __rhs.eback()),
357 __intbuf_ + (__rhs.egptr() - __rhs.eback()));
360 (char_type*)__extbuf_ + (__rhs.gptr() - __rhs.eback()),
361 (char_type*)__extbuf_ + (__rhs.egptr() - __rhs.eback()));
456 if (this->eback() == (char_type*)__rhs.__extbuf_min_)
458 ptrdiff_t __n = this->gptr() - this->eback();
459 ptrdiff_t __e = this->egptr() - this->eback();
472 if (__rhs.eback() == (char_type*)__extbuf_min_)
474 ptrdiff_t __n = __rhs.gptr() - __rhs.eback();
475 ptrdiff_t __e = __rhs.egptr() - __rhs.eback();
720 const size_t __unget_sz = __initial ? 0 : min<size_t>((this->egptr() - this->eback()) / 2, 4);
724 memmove(this->eback(), this->egptr() - __unget_sz, __unget_sz * sizeof(char_type));
727 size_t __nmemb = static_cast<size_t>(this->egptr() - this->eback() - __unget_sz);
728 __nmemb = fread(this->eback() + __unget_sz, 1, __nmemb, __file_);
731 this->setg(this->eback(),
732 this->eback() + __unget_sz,
733 this->eback() + __unget_sz + __nmemb);
757 this->eback() + __unget_sz,
758 this->eback() + __ibs_, __inext);
765 else if (__inext != this->eback() + __unget_sz)
767 this->setg(this->eback(), this->eback() + __unget_sz, __inext);
775 if (this->eback() == &__1buf)
784 if (__file_ && this->eback() < this->gptr())
1024 this->gptr() - this->eback());