Searched refs:egptr (Results 1 - 10 of 10) sorted by relevance

/external/stlport/src/
H A Dstrstream.cpp177 if (gptr() == egptr() && pptr() && pptr() > egptr())
180 if (gptr() != egptr())
212 char* seekhigh = epptr() ? epptr() : egptr();
244 if (off <= egptr() - seeklow)
245 setg(seeklow, seeklow + __STATIC_CAST(ptrdiff_t, off), egptr());
H A Dfstream.cpp48 if (__this->gptr() != __this->egptr()) {
/external/zlib/src/contrib/iostream3/
H A Dzfstream.cc175 if (this->gptr() && (this->gptr() < this->egptr()))
176 return std::streamsize(this->egptr() - this->gptr());
187 // to be called when gptr >= egptr, but it serves as error check)
188 if (this->gptr() && (this->gptr() < this->egptr()))
/external/stlport/stlport/stl/
H A D_streambuf.h89 char_type* egptr() const { return _M_gend; } // End function in class:basic_streambuf
104 char_type* _M_egptr() const { return egptr(); }
168 // or when gptr() >= egptr(). Subclasses are expected to override
H A D_sstream.c93 // Precondition: gptr() >= egptr(). Returns a character, if one is available.
97 return this->gptr() != this->egptr()
102 // Precondition: gptr() >= egptr().
106 if (this->gptr() != this->egptr()) {
335 ptrdiff_t __n = this->egptr() - this->eback();
373 if (__n < 0 || __n > this->egptr() - this->eback())
375 this->setg(this->eback(), this->eback() + __STATIC_CAST(ptrdiff_t, __n), this->egptr());
H A D_istream.c730 if (__buf->egptr() != __buf->gptr())
762 this->_M_gcount = __buf->egptr() != __buf->gptr()
789 if (__buf->gptr() != __buf->egptr())
830 if (__buf->gptr() != __buf->egptr())
867 streamsize __n = __buf->gptr() != __buf->egptr()
1113 if (__buf->gptr() != __buf->egptr())
1125 if (__buf->gptr() != __buf->egptr())
1154 if (__buf->gptr() != __buf->egptr())
1167 if (__buf->gptr() != __buf->egptr())
1190 else if (__buf->gptr() != __buf->egptr())
[all...]
H A D_fstream.c137 return this->egptr() - this->gptr();
181 this->setg(this->egptr() - 1, this->egptr() - 1, __pback_end);
188 _M_saved_egptr = this->egptr();
H A D_ostream.c53 bool __any_inserted = __from->gptr() != __from->egptr()
77 while (__from->egptr() != __from->gptr()) {
78 const ptrdiff_t __avail = __from->egptr() - __from->gptr();
H A D_fstream.h414 if (__this->gptr() != __this->egptr()) {
/external/oprofile/include/
H A Dsstream159 endi = egptr();

Completed in 170 milliseconds