OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:_M_pnext
(Results
1 - 2
of
2
) sorted by null
/external/stlport/stlport/stl/
_streambuf.c
33
_M_pbegin(0),
_M_pnext
(0), _M_pend(0),
90
if (
_M_pnext
< _M_pend) {
91
size_t __chunk = (min) (__STATIC_CAST(size_t,_M_pend -
_M_pnext
),
93
_Traits::copy(
_M_pnext
, __s, __chunk);
96
_M_pnext
+= __chunk;
118
if (
_M_pnext
< _M_pend) {
119
size_t __chunk = (min) (__STATIC_CAST(size_t,_M_pend -
_M_pnext
),
121
_Traits::assign(
_M_pnext
, __chunk, __c);
123
_M_pnext
+= __chunk;
_streambuf.h
66
char_type*
_M_pnext
; // Current position within the put area
79
_M_pbegin(0),
_M_pnext
(0), _M_pend(0),
112
char_type* pptr() const { return
_M_pnext
; } // Current position
115
void pbump(int __n) {
_M_pnext
+= __n; }
118
_M_pnext
= __pbegin;
199
return ((
_M_pnext
< _M_pend) ? _Traits::to_int_type(*
_M_pnext
++ = __c)
Completed in 44 milliseconds