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

/macosx-10.10.1/libstdcxx-104.1/include/c++/4.2.1/bits/
H A Dpostypes.h116 fpos(streamoff __off) argument
117 : _M_off(__off), _M_state() { }
140 operator+=(streamoff __off) argument
142 _M_off += __off;
151 operator-=(streamoff __off) argument
153 _M_off -= __off;
164 operator+(streamoff __off) const
167 __pos += __off;
178 operator-(streamoff __off) const
181 __pos -= __off;
[all...]
H A Dbasic_file.h101 seekoff(streamoff __off, ios_base::seekdir __way);
H A Dbasic_string.h324 _M_limit(size_type __pos, size_type __off) const
326 const bool __testoff = __off < this->size() - __pos;
327 return __testoff ? __off : this->size() - __pos;
/macosx-10.10.1/libstdcxx-104.1/src/
H A Dbasic_file.cc166 const std::streamsize __off = __ret - __n1_left; local
167 if (__off >= 0)
169 __nleft -= xwrite(__fd, __s2 + __off, __n2 - __off);
319 __basic_file<char>::seekoff(streamoff __off, ios_base::seekdir __way) argument
322 return lseek64(this->fd(), __off, __way);
324 if (__off > numeric_limits<off_t>::max()
325 || __off < numeric_limits<off_t>::min())
327 return lseek(this->fd(), __off, __way);
366 const streamoff __off local
[all...]
/macosx-10.10.1/swig-12/Lib/std/
H A Dstd_streambuf.i39 pubseekoff(off_type __off, ios_base::seekdir __way,
/macosx-10.10.1/libstdcxx-104.1/include/c++/4.2.1/ext/
H A Dstdio_sync_filebuf.h164 seekoff(std::streamoff __off, std::ios_base::seekdir __dir, argument
176 if (!fseeko64(_M_file, __off, __whence))
179 if (!fseek(_M_file, __off, __whence))
H A Dvstring.h98 _M_limit(size_type __pos, size_type __off) const
100 const bool __testoff = __off < this->size() - __pos;
101 return __testoff ? __off : this->size() - __pos;

Completed in 185 milliseconds