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

/freebsd-11-stable/contrib/libstdc++/include/bits/
H A Dpostypes.h116 fpos(streamoff __off) argument
117 : _M_off(__off), _M_state() { }
137 operator+=(streamoff __off) argument
139 _M_off += __off;
148 operator-=(streamoff __off) argument
150 _M_off -= __off;
161 operator+(streamoff __off) const
164 __pos += __off;
175 operator-(streamoff __off) const
178 __pos -= __off;
[all...]
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;
/freebsd-11-stable/contrib/libstdc++/config/io/
H A Dbasic_file_stdio.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...]
H A Dbasic_file_stdio.h101 seekoff(streamoff __off, ios_base::seekdir __way);
/freebsd-11-stable/contrib/libstdc++/include/std/
H A Dstd_fstream.h355 seekoff(off_type __off, ios_base::seekdir __way,
364 _M_seek(off_type __off, ios_base::seekdir __way, __state_type __state);
387 * __off == egptr() - eback() upon underflow/uflow ('read' mode);
388 * __off == 0 upon overflow ('write' mode);
389 * __off == -1 upon open, setbuf, seekoff/pos ('uncommitted' mode).
397 _M_set_buffer(streamsize __off) argument
402 if (__testin && __off > 0)
403 this->setg(_M_buf, _M_buf, _M_buf + __off);
407 if (__testout && __off == 0 && _M_buf_size > 1 )
H A Dstd_streambuf.h258 pubseekoff(off_type __off, ios_base::seekdir __way, argument
260 { return this->seekoff(__off, __way, __mode); }
H A Dstd_sstream.h223 seekoff(off_type __off, ios_base::seekdir __way,
/freebsd-11-stable/contrib/llvm-project/libcxx/src/
H A Dstrstream.cpp233 strstreambuf::seekoff(off_type __off, ios_base::seekdir __way, ios_base::openmode __which) argument
273 newoff += __off;
282 __off = epptr() - newpos;
284 __pbump((epptr() - pbase()) - __off);
/freebsd-11-stable/contrib/libstdc++/include/ext/
H A Dstdio_sync_filebuf.h159 seekoff(std::streamoff __off, std::ios_base::seekdir __dir, argument
171 if (!fseeko64(_M_file, __off, __whence))
174 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 147 milliseconds