Home
last modified time | relevance | path

Searched refs:_M_pnext (Results 1 – 2 of 2) sorted by relevance

/external/stlport/stlport/stl/
D_streambuf.c33 _M_pbegin(0), _M_pnext(0), _M_pend(0), in basic_streambuf()
90 if (_M_pnext < _M_pend) { in xsputn()
91 size_t __chunk = (min) (__STATIC_CAST(size_t,_M_pend - _M_pnext), in xsputn()
93 _Traits::copy(_M_pnext, __s, __chunk); in xsputn()
96 _M_pnext += __chunk; in xsputn()
118 if (_M_pnext < _M_pend) { in _M_xsputnc()
119 size_t __chunk = (min) (__STATIC_CAST(size_t,_M_pend - _M_pnext), in _M_xsputnc()
121 _Traits::assign(_M_pnext, __chunk, __c); in _M_xsputnc()
123 _M_pnext += __chunk; in _M_xsputnc()
D_streambuf.h66 char_type* _M_pnext; // Current position within the put area variable
79 _M_pbegin(0), _M_pnext(0), _M_pend(0), in basic_streambuf()
112 char_type* pptr() const { return _M_pnext; } // Current position in pptr()
115 void pbump(int __n) { _M_pnext += __n; } in pbump()
118 _M_pnext = __pbegin; in setp()
199 return ((_M_pnext < _M_pend) ? _Traits::to_int_type(*_M_pnext++ = __c) in sputc()