Searched refs:__off (Results 1 - 11 of 11) sorted by relevance

/external/stlport/stlport/stl/
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_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 D_strstream.h78 virtual pos_type seekoff(off_type __off, ios_base::seekdir __dir,
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);
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.h90 virtual pos_type seekoff(off_type __off, ios_base::seekdir __dir,
H A D_istream.c532 basic_istream<_CharT, _Traits>::seekg(off_type __off, ios_base::seekdir __dir) {
537 __buf->pubseekoff(__off, __dir, ios_base::in);
/external/clang/test/Analysis/
H A Dstream.c12 extern int fseek (FILE *__stream, long int __off, int __whence);
/external/libcxx/src/
H A Dstrstream.cpp229 strstreambuf::seekoff(off_type __off, ios_base::seekdir __way, ios_base::openmode __which) argument
267 newoff += __off;
276 __off = epptr() - newpos;
278 pbump(static_cast<int>((epptr() - pbase()) - __off));
/external/valgrind/main/perf/
H A Dtest_input_for_tinycc.c5494 extern int fseek (FILE *__stream, long int __off, int __whence);

Completed in 606 milliseconds