Searched refs:__off (Results 1 – 8 of 8) sorted by relevance
/reactos/sdk/include/c++/stlport/stl/ |
H A D | char_traits.h | 99 fpos& operator+=(streamoff __off) { 100 _M_pos += __off; 103 fpos& operator-=(streamoff __off) { 104 _M_pos -= __off; 108 fpos operator+(streamoff __off) { 110 __tmp += __off; 113 fpos operator-(streamoff __off) { 115 __tmp -= __off;
|
H A D | _fstream.c | 291 basic_filebuf<_CharT, _Traits>::seekoff(off_type __off, in seekoff() argument 297 if (!_M_constant_width && __off != 0) in seekoff() 300 if (!_M_seek_init(__off != 0 || __whence != ios_base::cur)) in seekoff() 305 return _M_seek_return(_M_base._M_seek(_M_width * __off, __whence), in seekoff() 311 return _M_seek_return(_M_base._M_seek(_M_width * __off, __whence), in seekoff() 320 return __off == 0 ? pos_type(_M_base._M_seek(0, ios_base::cur) - __adjust) in seekoff() 335 return __off == 0 ? pos_type(_M_base._M_seek(0, ios_base::cur) - __eadj) in seekoff() 374 return __off == 0 ? pos_type(__cur + __adj) in seekoff() 390 streamoff __off = off_type(__pos); in seekpos() local 391 if (__off != -1 && _M_base._M_seek(__off, ios_base::beg) != -1) { in seekpos() [all …]
|
H A D | _sstream.c | 300 ::seekoff(off_type __off, in seekoff() argument 324 if ( __off == 0 ) { in seekoff() 332 __off += __newoff; in seekoff() 337 if (__off < 0 || __off > __n) in seekoff() 339 this->setg(this->eback(), this->eback() + __STATIC_CAST(ptrdiff_t, __off), in seekoff() 346 if (__off < 0 || __off > __n) in seekoff() 349 this->pbump((int)__off); in seekoff() 352 return pos_type(__off); in seekoff()
|
H A D | _ostream.h | 156 _Self& seekp(off_type __off, ios_base::seekdir __dir) { in seekp() argument 158 this->rdbuf()->pubseekoff(__off, __dir, ios_base::out); in seekp()
|
H A D | _strstream.h | 78 virtual pos_type seekoff(off_type __off, ios_base::seekdir __dir,
|
H A D | _fstream.h | 247 pos_type _M_seek_return(off_type __off, _State_type __state) { in _M_seek_return() argument 248 if (__off != -1) { in _M_seek_return() 259 pos_type __result(__off); in _M_seek_return()
|
H A D | _sstream.h | 90 virtual pos_type seekoff(off_type __off, ios_base::seekdir __dir,
|
H A D | _istream.c | 518 basic_istream<_CharT, _Traits>::seekg(off_type __off, ios_base::seekdir __dir) { in seekg() argument 523 __buf->pubseekoff(__off, __dir, ios_base::in); in seekg()
|