Searched refs:__off (Results 1 – 12 of 12) sorted by relevance
/external/libcxx/src/ |
D | strstream.cpp | 229 strstreambuf::seekoff(off_type __off, ios_base::seekdir __way, ios_base::openmode __which) in seekoff() argument 267 newoff += __off; in seekoff() 276 __off = epptr() - newpos; in seekoff() 278 pbump(static_cast<int>((epptr() - pbase()) - __off)); in seekoff()
|
/external/clang/test/Analysis/ |
D | stream.c | 12 extern int fseek (FILE *__stream, long int __off, int __whence);
|
/external/libcxx/include/ |
D | streambuf | 140 pos_type pubseekoff(off_type __off, ios_base::seekdir __way, 188 virtual pos_type seekoff(off_type __off, ios_base::seekdir __way, 252 basic_streambuf<_CharT, _Traits>::pubseekoff(off_type __off, 256 return seekoff(__off, __way, __which);
|
D | fstream | 219 virtual pos_type seekoff(off_type __off, ios_base::seekdir __way, 784 basic_filebuf<_CharT, _Traits>::seekoff(off_type __off, ios_base::seekdir __way, 792 if (__file_ == 0 || (__width <= 0 && __off != 0) || sync()) 794 // __width > 0 || __off == 0 811 if (fseek(__file_, __width > 0 ? __width * __off : 0, __whence)) 815 if (fseeko(__file_, __width > 0 ? __width * __off : 0, __whence)) 886 const int __off = __cv_->length(__state, __extbuf_, 889 __c += __extbufnext_ - __extbuf_ - __off;
|
D | ostream | 218 basic_ostream& seekp(off_type __off, ios_base::seekdir __dir); 1018 basic_ostream<_CharT, _Traits>::seekp(off_type __off, ios_base::seekdir __dir) 1023 if (this->rdbuf()->pubseekoff(__off, __dir, ios_base::out) == pos_type(-1))
|
D | sstream | 232 virtual pos_type seekoff(off_type __off, ios_base::seekdir __way, 560 basic_stringbuf<_CharT, _Traits, _Allocator>::seekoff(off_type __off, 589 __noff += __off;
|
D | strstream | 173 virtual pos_type seekoff(off_type __off, ios_base::seekdir __way,
|
D | string | 473 _LIBCPP_INLINE_VISIBILITY fpos(streamoff __off = streamoff()) : __st_(), __off_(__off) {} 480 _LIBCPP_INLINE_VISIBILITY fpos& operator+=(streamoff __off) {__off_ += __off; return *this;} 481 …_LIBCPP_INLINE_VISIBILITY fpos operator+ (streamoff __off) const {fpos __t(*this); __t += __off; … 482 _LIBCPP_INLINE_VISIBILITY fpos& operator-=(streamoff __off) {__off_ -= __off; return *this;} 483 …_LIBCPP_INLINE_VISIBILITY fpos operator- (streamoff __off) const {fpos __t(*this); __t -= __off; …
|
D | istream | 259 basic_istream& seekg(off_type __off, ios_base::seekdir __dir); 1404 basic_istream<_CharT, _Traits>::seekg(off_type __off, ios_base::seekdir __dir) 1413 if (this->rdbuf()->pubseekoff(__off, __dir, ios_base::in) == pos_type(-1))
|
D | vector | 1902 difference_type __off = __position - begin(); 1903 pointer __p = this->__begin_ + __off; 1937 return begin() + __off; 3061 difference_type __off = __position - begin(); 3093 return begin() + __off;
|
D | locale | 4066 virtual pos_type seekoff(off_type __off, ios_base::seekdir __way, 4311 wbuffer_convert<_Codecvt, _Elem, _Tr>::seekoff(off_type __off, ios_base::seekdir __way, 4315 if (__cv_ == 0 || __bufptr_ == 0 || (__width <= 0 && __off != 0) || sync()) 4317 // __width > 0 || __off == 0 4329 pos_type __r = __bufptr_->pubseekoff(__width * __off, __way, __om);
|
/external/valgrind/perf/ |
D | test_input_for_tinycc.c | 5494 extern int fseek (FILE *__stream, long int __off, int __whence);
|