Searched defs:__off (Results 1 - 5 of 5) sorted by relevance

/external/stlport/stlport/stl/
H A D_ostream.h156 _Self& seekp(off_type __off, ios_base::seekdir __dir) { argument
158 this->rdbuf()->pubseekoff(__off, __dir, ios_base::out);
H A D_sstream.c300 ::seekoff(off_type __off, argument
324 if ( __off == 0 ) {
332 __off += __newoff;
337 if (__off < 0 || __off > __n)
339 this->setg(this->eback(), this->eback() + __STATIC_CAST(ptrdiff_t, __off),
346 if (__off < 0 || __off > __n)
349 this->pbump((int)__off);
352 return pos_type(__off);
[all...]
H A Dchar_traits.h99 fpos& operator+=(streamoff __off) { argument
100 _M_pos += __off;
103 fpos& operator-=(streamoff __off) { argument
104 _M_pos -= __off;
108 fpos operator+(streamoff __off) { argument
110 __tmp += __off;
113 fpos operator-(streamoff __off) { argument
115 __tmp -= __off;
H A D_fstream.c291 basic_filebuf<_CharT, _Traits>::seekoff(off_type __off, argument
297 if (!_M_constant_width && __off != 0)
300 if (!_M_seek_init(__off != 0 || __whence != ios_base::cur))
305 return _M_seek_return(_M_base._M_seek(_M_width * __off, __whence),
311 return _M_seek_return(_M_base._M_seek(_M_width * __off, __whence),
315 // __off is relative to gptr(). We need to do a bit of arithmetic
319 // if __off == 0, we do not need to exit input mode and to shift file pointer
320 return __off == 0 ? pos_type(_M_base._M_seek(0, ios_base::cur) - __adjust)
321 : _M_seek_return(_M_base._M_seek(__off - __adjust, ios_base::cur), _State_type());
335 return __off
[all...]
H A D_fstream.h238 pos_type _M_seek_return(off_type __off, _State_type __state) { argument
239 if (__off != -1) {
250 pos_type __result(__off);

Completed in 250 milliseconds