Lines Matching refs:eback
358 else if (__rhs.eback())
360 if (__rhs.eback() == __rhs.__intbuf_)
361 this->setg(__intbuf_, __intbuf_ + (__rhs.gptr() - __rhs.eback()),
362 __intbuf_ + (__rhs.egptr() - __rhs.eback()));
365 (char_type*)__extbuf_ + (__rhs.gptr() - __rhs.eback()),
366 (char_type*)__extbuf_ + (__rhs.egptr() - __rhs.eback()));
472 if (this->eback() == (char_type*)__rhs.__extbuf_min_)
474 ptrdiff_t __n = this->gptr() - this->eback();
475 ptrdiff_t __e = this->egptr() - this->eback();
488 if (__rhs.eback() == (char_type*)__extbuf_min_)
490 ptrdiff_t __n = __rhs.gptr() - __rhs.eback();
491 ptrdiff_t __e = __rhs.egptr() - __rhs.eback();
734 const size_t __unget_sz = __initial ? 0 : min<size_t>((this->egptr() - this->eback()) / 2, 4);
738 _VSTD::memmove(this->eback(), this->egptr() - __unget_sz, __unget_sz * sizeof(char_type));
741 size_t __nmemb = static_cast<size_t>(this->egptr() - this->eback() - __unget_sz);
742 __nmemb = fread(this->eback() + __unget_sz, 1, __nmemb, __file_);
745 this->setg(this->eback(),
746 this->eback() + __unget_sz,
747 this->eback() + __unget_sz + __nmemb);
771 this->eback() + __unget_sz,
772 this->eback() + __ibs_, __inext);
779 else if (__inext != this->eback() + __unget_sz)
781 this->setg(this->eback(), this->eback() + __unget_sz, __inext);
789 if (this->eback() == &__1buf)
798 if (__file_ && this->eback() < this->gptr())
1038 this->gptr() - this->eback());