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

/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
H A Dpostypes.h103 fpos(streamoff __off) argument
104 : _M_off(__off), _M_state() { }
130 operator+=(streamoff __off) argument
132 _M_off += __off;
141 operator-=(streamoff __off) argument
143 _M_off -= __off;
154 operator+(streamoff __off) const
157 __pos += __off;
168 operator-(streamoff __off) const
171 __pos -= __off;
[all...]
H A Dcow_string.h384 _M_limit(size_type __pos, size_type __off) const _GLIBCXX_NOEXCEPT
386 const bool __testoff = __off < this->size() - __pos;
387 return __testoff ? __off : this->size() - __pos;
3230 const size_type __off = __s - _M_data(); local
3232 __s = _M_data() + __off;
3289 const size_type __off = __s - _M_data(); local
3291 __s = _M_data() + __off;
3347 size_type __off = __s - _M_data(); local
3348 __left ? __off : (__off
[all...]
H A Dbasic_string.h410 _M_limit(size_type __pos, size_type __off) const _GLIBCXX_NOEXCEPT
412 const bool __testoff = __off < this->size() - __pos;
413 return __testoff ? __off : this->size() - __pos;
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
H A Dpostypes.h133 fpos(streamoff __off) argument
134 : _M_off(__off), _M_state() { }
160 operator+=(streamoff __off) argument
162 _M_off += __off;
171 operator-=(streamoff __off) argument
173 _M_off -= __off;
184 operator+(streamoff __off) const
187 __pos += __off;
198 operator-(streamoff __off) const
201 __pos -= __off;
[all...]
H A Dbasic_string.h337 _M_limit(size_type __pos, size_type __off) const _GLIBCXX_NOEXCEPT
339 const bool __testoff = __off < this->size() - __pos;
340 return __testoff ? __off : this->size() - __pos;
3420 _M_limit(size_type __pos, size_type __off) const _GLIBCXX_NOEXCEPT
3422 const bool __testoff = __off < this->size() - __pos;
3423 return __testoff ? __off : this->size() - __pos;
/netbsd-current/external/gpl3/gcc.old/dist/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
/netbsd-current/external/gpl3/gcc/dist/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
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/config/io/
H A Dbasic_file_stdio.cc178 const std::streamsize __off = __ret - __n1_left; local
179 if (__off >= 0)
181 __nleft -= xwrite(__fd, __s2 + __off, __n2 - __off);
379 __basic_file<char>::seekoff(streamoff __off, ios_base::seekdir __way) throw () argument
382 return lseek64(this->fd(), __off, __way);
384 if (__off > numeric_limits<off_t>::max()
385 || __off < numeric_limits<off_t>::min())
388 return fseek(this->file(), __off, __way);
390 return lseek(this->fd(), __off, __wa
428 const streamoff __off = __buffer.st_size - lseek64(this->fd(), 0, local
[all...]
H A Dbasic_file_stdio.h123 seekoff(streamoff __off, ios_base::seekdir __way) throw ();
/netbsd-current/external/gpl3/gcc.old/dist/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);
345 __basic_file<char>::seekoff(streamoff __off, ios_base::seekdir __way) throw () argument
348 return lseek64(this->fd(), __off, __way);
350 if (__off > numeric_limits<off_t>::max()
351 || __off < numeric_limits<off_t>::min())
353 return lseek(this->fd(), __off, __way);
390 const streamoff __off local
[all...]
H A Dbasic_file_stdio.h123 seekoff(streamoff __off, ios_base::seekdir __way) throw ();
/netbsd-current/external/apache2/llvm/dist/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);
/netbsd-current/external/gpl3/gcc.old/dist/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.h104 _M_limit(size_type __pos, size_type __off) const _GLIBCXX_NOEXCEPT
106 const bool __testoff = __off < this->size() - __pos;
107 return __testoff ? __off : this->size() - __pos;
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/include/ext/
H A Dstdio_sync_filebuf.h193 seekoff(std::streamoff __off, std::ios_base::seekdir __dir, argument
205 if (!fseeko64(_M_file, __off, __whence))
208 if (!fseek(_M_file, __off, __whence))
H A Dvstring.h105 _M_limit(size_type __pos, size_type __off) const _GLIBCXX_NOEXCEPT
107 const bool __testoff = __off < this->size() - __pos;
108 return __testoff ? __off : this->size() - __pos;
/netbsd-current/external/gpl3/gcc/dist/libphobos/libdruntime/core/stdcpp/
H A Dstring.d1001 const size_type __off = __s - _M_data;
1003 __s = _M_data + __off;
1064 const size_type __off = __s - _M_data;
1066 __s = _M_data + __off;
1101 size_type __off = __s - _M_data;
1102 __left ? __off : (__off += __n2 - __n1);
1104 (_M_data + __pos)[0 .. __n2] = (_M_data + __off)[0 .. __n2];
1327 size_type _M_limit(size_type __pos, size_type __off) const @safe nothrow @nogc pure
1329 const bool __testoff = __off < siz
[all...]
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/include/experimental/bits/
H A Dsimd_fixed_size.h442 constexpr size_t __off = __offset<_Up>;
443 if constexpr (_S_first_size == _Up::_S_first_size && __off == 0)
447 && __off == 0)
449 else if constexpr (_S_first_size + __off < _Up::_S_first_size)
451 else if constexpr (_S_first_size + __off == _Up::_S_first_size)

Completed in 526 milliseconds