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

/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/
H A Dpr33696.c7 extern int foo (long int __off);
/haiku-buildtools/gcc/libstdc++-v3/include/bits/
H A Dpostypes.h133 fpos(streamoff __off) argument
134 : _M_off(__off), _M_state() { }
154 operator+=(streamoff __off) argument
156 _M_off += __off;
165 operator-=(streamoff __off) argument
167 _M_off -= __off;
178 operator+(streamoff __off) const
181 __pos += __off;
192 operator-(streamoff __off) const
195 __pos -= __off;
[all...]
H A Dbasic_string.h277 _M_limit(size_type __pos, size_type __off) const _GLIBCXX_NOEXCEPT
279 const bool __testoff = __off < this->size() - __pos;
280 return __testoff ? __off : this->size() - __pos;
2736 _M_limit(size_type __pos, size_type __off) const _GLIBCXX_NOEXCEPT
2738 const bool __testoff = __off < this->size() - __pos;
2739 return __testoff ? __off : this->size() - __pos;
/haiku-buildtools/gcc/libstdc++-v3/include/parallel/
H A Dsearch.h47 * @param __off Returned __offsets.
52 _DifferenceTp* __off)
56 __off[0] = -1;
58 __off[1] = 0;
63 __k = __off[__k];
64 __off[__j] = ++__k;
51 __calc_borders(_RAIter __elements, _DifferenceTp __length, _DifferenceTp* __off) argument
/haiku-buildtools/gcc/libstdc++-v3/config/io/
H A Dbasic_file_stdio.cc164 const std::streamsize __off = __ret - __n1_left; local
165 if (__off >= 0)
167 __nleft -= xwrite(__fd, __s2 + __off, __n2 - __off);
319 __basic_file<char>::seekoff(streamoff __off, ios_base::seekdir __way) throw () 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);
364 const streamoff __off local
[all...]
H A Dbasic_file_stdio.h118 seekoff(streamoff __off, ios_base::seekdir __way) throw ();
/haiku-buildtools/gcc/libstdc++-v3/include/ext/
H A Dstdio_sync_filebuf.h194 seekoff(std::streamoff __off, std::ios_base::seekdir __dir, argument
206 if (!fseeko64(_M_file, __off, __whence))
209 if (!fseek(_M_file, __off, __whence))
H A Dvstring.h103 _M_limit(size_type __pos, size_type __off) const _GLIBCXX_NOEXCEPT
105 const bool __testoff = __off < this->size() - __pos;
106 return __testoff ? __off : this->size() - __pos;
/haiku-buildtools/legacy/gcc/libio/
H A Deditbuf.cc323 __off == index at start of buffer (need only be valid after seek ? )
506 __off = 0;
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/lto/
H A Dpr47333.C158 fpos(streamoff __off) argument
159 : _M_off(__off), _M_state() { }

Completed in 199 milliseconds