Searched refs:__n1 (Results 1 - 13 of 13) sorted by relevance

/haiku-buildtools/gcc/libstdc++-v3/config/io/
H A Dbasic_file_stdio.cc139 xwritev(int __fd, const char* __s1, std::streamsize __n1, argument
142 std::streamsize __nleft = __n1 + __n2;
143 std::streamsize __n1_left = __n1;
175 return __n1 + __n2 - __nleft;
302 __basic_file<char>::xsputn_2(const char* __s1, streamsize __n1, argument
307 __ret = xwritev(this->fd(), __s1, __n1, __s2, __n2);
309 if (__n1)
310 __ret = xwrite(this->fd(), __s1, __n1);
312 if (__ret == __n1)
H A Dbasic_file_stdio.h111 xsputn_2(const char* __s1, streamsize __n1,
/haiku-buildtools/legacy/gcc/libstdc++/stl/
H A Dstl_slist.h689 _Node* __n1 = (_Node*) _M_head._M_next; local
691 while (__n1 && __n2) {
692 __n1->_M_data = __n2->_M_data;
693 __p1 = __n1;
694 __n1 = (_Node*) __n1->_M_next;
749 _Node* __n1 = (_Node*) _SL1._M_head._M_next; local
751 while (__n1 && __n2 && __n1->_M_data == __n2->_M_data) {
752 __n1
820 _Node_base* __n1 = &_M_head; local
893 _Node_base* __n1 = &_M_head; local
[all...]
H A Dbitset203 for (size_t __n1 = 0; __n1 < __n; ++__n1)
204 _M_w[__n1] = static_cast<_WordT>(0);
221 for (size_t __n1 = __limit + 1; __n1 < _Nw; ++__n1)
222 _M_w[__n1] = static_cast<_WordT>(0);
H A Dstl_list.h522 _Node* __n1 = (_Node*) __e1->_M_next; local
524 for ( ; __n1 != __e1 && __n2 != __e2 ;
525 __n1 = (_Node*) __n1->_M_next, __n2 = (_Node*) __n2->_M_next)
526 if (__n1->_M_data != __n2->_M_data)
528 return __n1 == __e1 && __n2 == __e2;
/haiku-buildtools/gcc/libstdc++-v3/include/ext/
H A Dvstring_util.h167 _S_compare(size_type __n1, size_type __n2) argument
169 const difference_type __d = difference_type(__n1 - __n2);
H A Dvstring.h95 _M_check_length(size_type __n1, size_type __n2, const char* __s) const argument
97 if (this->max_size() - (this->size() - __n1) < __n2)
1263 * @param __n1 Number of characters to be replaced.
1280 replace(size_type __pos1, size_type __n1, const __versa_string& __str, argument
1283 return this->replace(__pos1, __n1, __str._M_data()
1292 * @param __n1 Number of characters to be replaced.
1308 replace(size_type __pos, size_type __n1, const _CharT* __s, argument
1313 _M_limit(__pos, __n1), __s, __n2);
1319 * @param __n1 Number of characters to be replaced.
1332 replace(size_type __pos, size_type __n1, cons argument
1356 replace(size_type __pos, size_type __n1, size_type __n2, _CharT __c) argument
[all...]
/haiku-buildtools/gcc/libstdc++-v3/include/bits/
H A Dbasic_string.h268 _M_check_length(size_type __n1, size_type __n2, const char* __s) const argument
270 if (this->max_size() - (this->size() - __n1) < __n2)
349 _S_compare(size_type __n1, size_type __n2) _GLIBCXX_NOEXCEPT
351 const difference_type __d = difference_type(__n1 - __n2);
1537 * @param __n1 Number of characters to be replaced.
1553 replace(size_type __pos1, size_type __n1, const basic_string& __str, argument
1555 { return this->replace(__pos1, __n1, __str._M_data()
1562 * @param __n1 Number of characters to be replaced.
1569 * Removes the characters in the range [__pos,__pos + __n1)
1578 replace(size_type __pos, size_type __n1, cons argument
1603 replace(size_type __pos, size_type __n1, const _CharT* __s) argument
1627 replace(size_type __pos, size_type __n1, size_type __n2, _CharT __c) argument
[all...]
H A Dhashtable_policy.h1769 std::ptrdiff_t __n1 = 0;
1772 ++__n1;
1774 if (__n1 != __n2)
H A Drandom.h572 size_t __w1, size_t __n1,
581 const std::mersenne_twister_engine<_UIntType1, __w1, __n1,
598 size_t __w1, size_t __n1,
607 std::mersenne_twister_engine<_UIntType1, __w1, __n1, __m1,
/haiku-buildtools/gcc/include/
H A Dlonglong.h1181 #define udiv_qrnnd(__q, __r, __n1, __n0, __d) \
1188 : "r" ((USItype) (__n1)), \
1199 #define udiv_qrnnd(__q, __r, __n1, __n0, __d) \
1203 : "r" ((USItype) (__n1)), \
1324 #define udiv_qrnnd(__q, __r, __n1, __n0, __d) \
1352 "1" ((USItype) (__n1)), \
/haiku-buildtools/binutils/include/
H A Dlonglong.h1209 #define udiv_qrnnd(__q, __r, __n1, __n0, __d) \
1216 : "r" ((USItype) (__n1)), \
1227 #define udiv_qrnnd(__q, __r, __n1, __n0, __d) \
1231 : "r" ((USItype) (__n1)), \
1352 #define udiv_qrnnd(__q, __r, __n1, __n0, __d) \
1380 "1" ((USItype) (__n1)), \
/haiku-buildtools/gcc/libstdc++-v3/include/tr1/
H A Drandom.h646 template<class _UIntType1, int __w1, int __n1, int __m1, int __r1,
652 const mersenne_twister<_UIntType1, __w1, __n1, __m1, __r1,
665 template<class _UIntType1, int __w1, int __n1, int __m1, int __r1,
671 mersenne_twister<_UIntType1, __w1, __n1, __m1, __r1,

Completed in 304 milliseconds