Home
last modified time | relevance | path

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

/ndk/sources/cxx-stl/stlport/stlport/stl/
D_fstream.c292 ios_base::seekdir __whence, in seekoff() argument
300 if (!_M_seek_init(__off != 0 || __whence != ios_base::cur)) in seekoff()
304 if (__whence == ios_base::beg || __whence == ios_base::end) in seekoff()
305 return _M_seek_return(_M_base._M_seek(_M_width * __off, __whence), in seekoff()
309 _STLP_ASSERT(__whence == ios_base::cur) in seekoff()
311 return _M_seek_return(_M_base._M_seek(_M_width * __off, __whence), in seekoff()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dfstream795 int __whence;
799 __whence = SEEK_SET;
802 __whence = SEEK_CUR;
805 __whence = SEEK_END;
811 if (fseek(__file_, __width > 0 ? __width * __off : 0, __whence))
815 if (fseeko(__file_, __width > 0 ? __width * __off : 0, __whence))