Home
last modified time | relevance | path

Searched refs:__i1 (Results 1 – 25 of 26) sorted by relevance

12

/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/parallel/
Dfind_selectors.h60 operator()(_RAIter1 __i1, _RAIter2 __i2, _Pred __pred) in operator()
61 { return __pred(*__i1); } in operator()
90 operator()(_RAIter1 __i1, _RAIter2 __i2, _Pred __pred) in operator()
93 return __pred(*__i1, *(__i1 + 1)); in operator()
130 operator()(_RAIter1 __i1, _RAIter2 __i2, _Pred __pred) in operator()
131 { return !__pred(*__i1, *__i2); } in operator()
169 operator()(_RAIter1 __i1, _RAIter2 __i2, _Pred __pred) in operator()
173 if (__pred(*__i1, *__pos_in_candidates)) in operator()
Dfind.h128 _RAIter1 __i1 = __begin1 + __start; in __find_template() local
137 if (__selector(__i1, __i2, __pred)) in __find_template()
145 ++__i1; in __find_template()
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/parallel/
Dfind_selectors.h60 operator()(_RAIter1 __i1, _RAIter2 __i2, _Pred __pred) in operator()
61 { return __pred(*__i1); } in operator()
90 operator()(_RAIter1 __i1, _RAIter2 __i2, _Pred __pred) in operator()
93 return __pred(*__i1, *(__i1 + 1)); in operator()
130 operator()(_RAIter1 __i1, _RAIter2 __i2, _Pred __pred) in operator()
131 { return !__pred(*__i1, *__i2); } in operator()
169 operator()(_RAIter1 __i1, _RAIter2 __i2, _Pred __pred) in operator()
173 if (__pred(*__i1, *__pos_in_candidates)) in operator()
Dfind.h128 _RAIter1 __i1 = __begin1 + __start; in __find_template() local
137 if (__selector(__i1, __i2, __pred)) in __find_template()
145 ++__i1; in __find_template()
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/ext/
Dvstring.h1375 replace(const_iterator __i1, const_iterator __i2, in _GLIBCXX_VISIBILITY()
1378 replace(iterator __i1, iterator __i2, const __versa_string& __str) in _GLIBCXX_VISIBILITY()
1380 { return this->replace(__i1, __i2, __str._M_data(), __str.size()); } in _GLIBCXX_VISIBILITY()
1398 replace(const_iterator __i1, const_iterator __i2, in _GLIBCXX_VISIBILITY()
1401 replace(iterator __i1, iterator __i2, const _CharT* __s, size_type __n) in _GLIBCXX_VISIBILITY()
1404 _GLIBCXX_DEBUG_PEDASSERT(_M_ibegin() <= __i1 && __i1 <= __i2 in _GLIBCXX_VISIBILITY()
1406 return this->replace(__i1 - _M_ibegin(), __i2 - __i1, __s, __n); in _GLIBCXX_VISIBILITY()
1424 replace(const_iterator __i1, const_iterator __i2, const _CharT* __s) in _GLIBCXX_VISIBILITY()
1426 replace(iterator __i1, iterator __i2, const _CharT* __s) in _GLIBCXX_VISIBILITY()
1430 return this->replace(__i1, __i2, __s, traits_type::length(__s)); in _GLIBCXX_VISIBILITY()
[all …]
Dslist799 const_iterator __i1 = _SL1.begin();
801 while (__i1 != __end1 && __i2 != __end2 && *__i1 == *__i2)
803 ++__i1;
806 return __i1 == __end1 && __i2 == __end2;
Dvstring.tcc84 _M_replace_dispatch(const_iterator __i1, const_iterator __i2, in _M_replace_dispatch() argument
89 const size_type __n1 = __i2 - __i1; in _M_replace_dispatch()
90 return _M_replace(__i1 - _M_ibegin(), __n1, __s._M_data(), in _M_replace_dispatch()
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/bits/
Dbasic_string.h1994 replace(__const_iterator __i1, __const_iterator __i2, in _GLIBCXX_VISIBILITY()
1996 { return this->replace(__i1, __i2, __str._M_data(), __str.size()); } in _GLIBCXX_VISIBILITY()
2014 replace(__const_iterator __i1, __const_iterator __i2, in _GLIBCXX_VISIBILITY()
2017 _GLIBCXX_DEBUG_PEDASSERT(begin() <= __i1 && __i1 <= __i2 in _GLIBCXX_VISIBILITY()
2019 return this->replace(__i1 - begin(), __i2 - __i1, __s, __n); in _GLIBCXX_VISIBILITY()
2036 replace(__const_iterator __i1, __const_iterator __i2, const _CharT* __s) in _GLIBCXX_VISIBILITY()
2039 return this->replace(__i1, __i2, __s, traits_type::length(__s)); in _GLIBCXX_VISIBILITY()
2057 replace(__const_iterator __i1, __const_iterator __i2, size_type __n, in _GLIBCXX_VISIBILITY()
2060 _GLIBCXX_DEBUG_PEDASSERT(begin() <= __i1 && __i1 <= __i2 in _GLIBCXX_VISIBILITY()
2062 return _M_replace_aux(__i1 - begin(), __i2 - __i1, __n, __c); in _GLIBCXX_VISIBILITY()
[all …]
Datomic_base.h425 compare_exchange_weak(__int_type& __i1, __int_type __i2, in _GLIBCXX_VISIBILITY()
434 return __atomic_compare_exchange_n(&_M_i, &__i1, __i2, 1, __m1, __m2); in _GLIBCXX_VISIBILITY()
438 compare_exchange_weak(__int_type& __i1, __int_type __i2, in _GLIBCXX_VISIBILITY()
448 return __atomic_compare_exchange_n(&_M_i, &__i1, __i2, 1, __m1, __m2); in _GLIBCXX_VISIBILITY()
452 compare_exchange_weak(__int_type& __i1, __int_type __i2, in _GLIBCXX_VISIBILITY()
455 return compare_exchange_weak(__i1, __i2, __m, in _GLIBCXX_VISIBILITY()
460 compare_exchange_weak(__int_type& __i1, __int_type __i2, in _GLIBCXX_VISIBILITY()
463 return compare_exchange_weak(__i1, __i2, __m, in _GLIBCXX_VISIBILITY()
468 compare_exchange_strong(__int_type& __i1, __int_type __i2, in _GLIBCXX_VISIBILITY()
477 return __atomic_compare_exchange_n(&_M_i, &__i1, __i2, 0, __m1, __m2); in _GLIBCXX_VISIBILITY()
[all …]
Dstl_list.h1998 const_iterator __i1 = __x.begin(); in _GLIBCXX_VISIBILITY() local
2000 while (__i1 != __end1 && __i2 != __end2 && *__i1 == *__i2) in _GLIBCXX_VISIBILITY()
2002 ++__i1; in _GLIBCXX_VISIBILITY()
2005 return __i1 == __end1 && __i2 == __end2; in _GLIBCXX_VISIBILITY()
Dlocale_facets_nonio.tcc934 for (size_t __i1 = 0; __i1 < __indexlen; ++__i1) in _M_extract_name() local
935 if (__c == __names[__i1][0] in _M_extract_name()
936 || __c == __ctype.toupper(__names[__i1][0])) in _M_extract_name()
937 __matches[__nmatches++] = __i1; in _M_extract_name()
Dbasic_string.tcc380 _M_replace_dispatch(const_iterator __i1, const_iterator __i2, in _M_replace_dispatch() argument
385 const size_type __n1 = __i2 - __i1; in _M_replace_dispatch()
386 return _M_replace(__i1 - begin(), __n1, __s._M_data(), in _M_replace_dispatch()
1105 _M_replace_dispatch(iterator __i1, iterator __i2, _InputIterator __k1,
1109 const size_type __n1 = __i2 - __i1;
1111 return _M_replace_safe(__i1 - _M_ibegin(), __n1, __s._M_data(),
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/bits/
Dbasic_string.h1535 replace(iterator __i1, iterator __i2, const basic_string& __str) in _GLIBCXX_VISIBILITY()
1536 { return this->replace(__i1, __i2, __str._M_data(), __str.size()); } in _GLIBCXX_VISIBILITY()
1554 replace(iterator __i1, iterator __i2, const _CharT* __s, size_type __n) in _GLIBCXX_VISIBILITY()
1556 _GLIBCXX_DEBUG_PEDASSERT(_M_ibegin() <= __i1 && __i1 <= __i2 in _GLIBCXX_VISIBILITY()
1558 return this->replace(__i1 - _M_ibegin(), __i2 - __i1, __s, __n); in _GLIBCXX_VISIBILITY()
1575 replace(iterator __i1, iterator __i2, const _CharT* __s) in _GLIBCXX_VISIBILITY()
1578 return this->replace(__i1, __i2, __s, traits_type::length(__s)); in _GLIBCXX_VISIBILITY()
1596 replace(iterator __i1, iterator __i2, size_type __n, _CharT __c) in _GLIBCXX_VISIBILITY()
1598 _GLIBCXX_DEBUG_PEDASSERT(_M_ibegin() <= __i1 && __i1 <= __i2 in _GLIBCXX_VISIBILITY()
1600 return _M_replace_aux(__i1 - _M_ibegin(), __i2 - __i1, __n, __c); in _GLIBCXX_VISIBILITY()
[all …]
Datomic_base.h492 compare_exchange_weak(__int_type& __i1, __int_type __i2, in _GLIBCXX_VISIBILITY()
499 return __atomic_compare_exchange_n(&_M_i, &__i1, __i2, 1, __m1, __m2); in _GLIBCXX_VISIBILITY()
503 compare_exchange_weak(__int_type& __i1, __int_type __i2, in _GLIBCXX_VISIBILITY()
511 return __atomic_compare_exchange_n(&_M_i, &__i1, __i2, 1, __m1, __m2); in _GLIBCXX_VISIBILITY()
515 compare_exchange_weak(__int_type& __i1, __int_type __i2, in _GLIBCXX_VISIBILITY()
518 return compare_exchange_weak(__i1, __i2, __m, in _GLIBCXX_VISIBILITY()
523 compare_exchange_weak(__int_type& __i1, __int_type __i2, in _GLIBCXX_VISIBILITY()
526 return compare_exchange_weak(__i1, __i2, __m, in _GLIBCXX_VISIBILITY()
531 compare_exchange_strong(__int_type& __i1, __int_type __i2, in _GLIBCXX_VISIBILITY()
538 return __atomic_compare_exchange_n(&_M_i, &__i1, __i2, 0, __m1, __m2); in _GLIBCXX_VISIBILITY()
[all …]
Dstl_list.h1580 const_iterator __i1 = __x.begin(); in _GLIBCXX_VISIBILITY() local
1582 while (__i1 != __end1 && __i2 != __end2 && *__i1 == *__i2) in _GLIBCXX_VISIBILITY()
1584 ++__i1; in _GLIBCXX_VISIBILITY()
1587 return __i1 == __end1 && __i2 == __end2; in _GLIBCXX_VISIBILITY()
Dlocale_facets_nonio.tcc907 for (size_t __i1 = 0; __i1 < __indexlen; ++__i1) in _M_extract_name() local
908 if (__c == __names[__i1][0] in _M_extract_name()
909 || __c == __ctype.toupper(__names[__i1][0])) in _M_extract_name()
910 __matches[__nmatches++] = __i1; in _M_extract_name()
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/ext/
Dvstring.h1289 replace(iterator __i1, iterator __i2, const __versa_string& __str) in _GLIBCXX_VISIBILITY()
1290 { return this->replace(__i1, __i2, __str._M_data(), __str.size()); } in _GLIBCXX_VISIBILITY()
1307 replace(iterator __i1, iterator __i2, const _CharT* __s, size_type __n) in _GLIBCXX_VISIBILITY()
1309 _GLIBCXX_DEBUG_PEDASSERT(_M_ibegin() <= __i1 && __i1 <= __i2 in _GLIBCXX_VISIBILITY()
1311 return this->replace(__i1 - _M_ibegin(), __i2 - __i1, __s, __n); in _GLIBCXX_VISIBILITY()
1328 replace(iterator __i1, iterator __i2, const _CharT* __s) in _GLIBCXX_VISIBILITY()
1331 return this->replace(__i1, __i2, __s, traits_type::length(__s)); in _GLIBCXX_VISIBILITY()
1349 replace(iterator __i1, iterator __i2, size_type __n, _CharT __c) in _GLIBCXX_VISIBILITY()
1351 _GLIBCXX_DEBUG_PEDASSERT(_M_ibegin() <= __i1 && __i1 <= __i2 in _GLIBCXX_VISIBILITY()
1353 return _M_replace_aux(__i1 - _M_ibegin(), __i2 - __i1, __n, __c); in _GLIBCXX_VISIBILITY()
[all …]
Dslist800 const_iterator __i1 = _SL1.begin();
802 while (__i1 != __end1 && __i2 != __end2 && *__i1 == *__i2)
804 ++__i1;
807 return __i1 == __end1 && __i2 == __end2;
Dvstring.tcc85 _M_replace_dispatch(iterator __i1, iterator __i2, _InputIterator __k1, in _M_replace_dispatch() argument
89 const size_type __n1 = __i2 - __i1; in _M_replace_dispatch()
90 return _M_replace(__i1 - _M_ibegin(), __n1, __s._M_data(), in _M_replace_dispatch()
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/std/
Datomic114 compare_exchange_weak(bool& __i1, bool __i2, memory_order __m1,
116 { return _M_base.compare_exchange_weak(__i1, __i2, __m1, __m2); }
119 compare_exchange_weak(bool& __i1, bool __i2, memory_order __m1,
121 { return _M_base.compare_exchange_weak(__i1, __i2, __m1, __m2); }
124 compare_exchange_weak(bool& __i1, bool __i2,
126 { return _M_base.compare_exchange_weak(__i1, __i2, __m); }
129 compare_exchange_weak(bool& __i1, bool __i2,
131 { return _M_base.compare_exchange_weak(__i1, __i2, __m); }
134 compare_exchange_strong(bool& __i1, bool __i2, memory_order __m1,
136 { return _M_base.compare_exchange_strong(__i1, __i2, __m1, __m2); }
[all …]
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/std/
Datomic127 compare_exchange_weak(bool& __i1, bool __i2, memory_order __m1,
129 { return _M_base.compare_exchange_weak(__i1, __i2, __m1, __m2); }
132 compare_exchange_weak(bool& __i1, bool __i2, memory_order __m1,
134 { return _M_base.compare_exchange_weak(__i1, __i2, __m1, __m2); }
137 compare_exchange_weak(bool& __i1, bool __i2,
139 { return _M_base.compare_exchange_weak(__i1, __i2, __m); }
142 compare_exchange_weak(bool& __i1, bool __i2,
144 { return _M_base.compare_exchange_weak(__i1, __i2, __m); }
147 compare_exchange_strong(bool& __i1, bool __i2, memory_order __m1,
149 { return _M_base.compare_exchange_strong(__i1, __i2, __m1, __m2); }
[all …]
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/debug/
Dstring638 replace(iterator __i1, iterator __i2, const basic_string& __str)
640 __glibcxx_check_erase_range(__i1, __i2);
641 _Base::replace(__i1.base(), __i2.base(), __str);
647 replace(iterator __i1, iterator __i2, const _CharT* __s, size_type __n)
649 __glibcxx_check_erase_range(__i1, __i2);
651 _Base::replace(__i1.base(), __i2.base(), __s, __n);
657 replace(iterator __i1, iterator __i2, const _CharT* __s)
659 __glibcxx_check_erase_range(__i1, __i2);
661 _Base::replace(__i1.base(), __i2.base(), __s);
667 replace(iterator __i1, iterator __i2, size_type __n, _CharT __c)
[all …]
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/debug/
Dstring673 replace(iterator __i1, iterator __i2, const basic_string& __str)
675 __glibcxx_check_erase_range(__i1, __i2);
676 _Base::replace(__i1.base(), __i2.base(), __str);
682 replace(iterator __i1, iterator __i2, const _CharT* __s, size_type __n)
684 __glibcxx_check_erase_range(__i1, __i2);
686 _Base::replace(__i1.base(), __i2.base(), __s, __n);
692 replace(iterator __i1, iterator __i2, const _CharT* __s)
694 __glibcxx_check_erase_range(__i1, __i2);
696 _Base::replace(__i1.base(), __i2.base(), __s);
702 replace(iterator __i1, iterator __i2, size_type __n, _CharT __c)
[all …]
/dragonfly/contrib/gcc-4.7/gcc/config/i386/
HDmmintrin.h858 _mm_set_pi32 (int __i1, int __i0) in _mm_set_pi32() argument
860 return (__m64) __builtin_ia32_vec_init_v2si (__i0, __i1); in _mm_set_pi32()
881 _mm_setr_pi32 (int __i0, int __i1) in _mm_setr_pi32() argument
883 return _mm_set_pi32 (__i1, __i0); in _mm_setr_pi32()
/dragonfly/contrib/gcc-8.0/gcc/config/i386/
HDmmintrin.h883 _mm_set_pi32 (int __i1, int __i0) in _mm_set_pi32() argument
885 return (__m64) __builtin_ia32_vec_init_v2si (__i0, __i1); in _mm_set_pi32()
906 _mm_setr_pi32 (int __i0, int __i1) in _mm_setr_pi32() argument
908 return _mm_set_pi32 (__i1, __i0); in _mm_setr_pi32()

12