| /netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/pstl/ |
| H A D | unseq_backend_simd.h | 536 _Combiner(const _Combiner& __obj) : __value{}, __bin_op(__obj.__bin_op) {} in _Combiner() 539 operator()(const _Combiner& __obj) in operator() 541 __value = (*__bin_op)(__value, __obj.__value); in operator() 631 _ComplexType(const _ComplexType& __obj) in __simd_min_element() 632 : __min_val(__obj.__min_val), __min_ind(__obj.__min_ind), __min_comp(__obj.__min_comp) in __simd_min_element() 638 operator()(const _ComplexType& __obj) in __simd_min_element() 640 if (!(*__min_comp)(__min_val, __obj.__min_val) && in __simd_min_element() 641 ((*__min_comp)(__obj.__min_val, __min_val) || __obj.__min_ind - __min_ind < 0)) in __simd_min_element() 643 __min_val = __obj.__min_val; in __simd_min_element() 644 __min_ind = __obj.__min_ind; in __simd_min_element() [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/pstl/ |
| H A D | unseq_backend_simd.h | 536 _Combiner(const _Combiner& __obj) : __value{}, __bin_op(__obj.__bin_op) {} in _Combiner() 539 operator()(const _Combiner& __obj) in operator() 541 __value = (*__bin_op)(__value, __obj.__value); in operator() 631 _ComplexType(const _ComplexType& __obj) in __simd_min_element() 632 : __min_val(__obj.__min_val), __min_ind(__obj.__min_ind), __min_comp(__obj.__min_comp) in __simd_min_element() 638 operator()(const _ComplexType& __obj) in __simd_min_element() 640 if (!(*__min_comp)(__min_val, __obj.__min_val) && in __simd_min_element() 641 ((*__min_comp)(__obj.__min_val, __min_val) || __obj.__min_ind - __min_ind < 0)) in __simd_min_element() 643 __min_val = __obj.__min_val; in __simd_min_element() 644 __min_ind = __obj.__min_ind; in __simd_min_element() [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/ |
| H A D | stream_iterator.h | 75 istream_iterator(const istream_iterator& __obj) in _GLIBCXX_VISIBILITY() 76 : _M_stream(__obj._M_stream), _M_value(__obj._M_value), in _GLIBCXX_VISIBILITY() 77 _M_ok(__obj._M_ok) in _GLIBCXX_VISIBILITY() 218 ostream_iterator(const ostream_iterator& __obj) in _GLIBCXX_VISIBILITY() 219 : _M_stream(__obj._M_stream), _M_string(__obj._M_string) { } in _GLIBCXX_VISIBILITY()
|
| H A D | stl_map.h | 918 insert_or_assign(const key_type& __k, _Obj&& __obj) in _GLIBCXX_VISIBILITY() 926 std::forward<_Obj>(__obj))); in _GLIBCXX_VISIBILITY() 929 (*__i).second = std::forward<_Obj>(__obj); in _GLIBCXX_VISIBILITY() 936 insert_or_assign(key_type&& __k, _Obj&& __obj) in _GLIBCXX_VISIBILITY() 944 std::forward<_Obj>(__obj))); in _GLIBCXX_VISIBILITY() 947 (*__i).second = std::forward<_Obj>(__obj); in _GLIBCXX_VISIBILITY() 974 const key_type& __k, _Obj&& __obj) in _GLIBCXX_VISIBILITY() 984 std::forward<_Obj>(__obj))); in _GLIBCXX_VISIBILITY() 987 (*__i).second = std::forward<_Obj>(__obj); in _GLIBCXX_VISIBILITY() 994 insert_or_assign(const_iterator __hint, key_type&& __k, _Obj&& __obj) in _GLIBCXX_VISIBILITY() [all …]
|
| H A D | move.h | 152 __exchange(_Tp& __obj, _Up&& __new_val) in _GLIBCXX_VISIBILITY() 154 _Tp __old_val = std::move(__obj); in _GLIBCXX_VISIBILITY() 155 __obj = std::forward<_Up>(__new_val); in _GLIBCXX_VISIBILITY()
|
| /netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/ |
| H A D | stream_iterator.h | 81 istream_iterator(const istream_iterator& __obj) in _GLIBCXX_VISIBILITY() 83 : _M_stream(__obj._M_stream), _M_value(__obj._M_value), in _GLIBCXX_VISIBILITY() 84 _M_ok(__obj._M_ok) in _GLIBCXX_VISIBILITY() 230 ostream_iterator(const ostream_iterator& __obj) _GLIBCXX_NOEXCEPT in _GLIBCXX_VISIBILITY() 231 : _M_stream(__obj._M_stream), _M_string(__obj._M_string) { } in _GLIBCXX_VISIBILITY()
|
| H A D | move.h | 157 __exchange(_Tp& __obj, _Up&& __new_val) in _GLIBCXX_VISIBILITY() 159 _Tp __old_val = std::move(__obj); in _GLIBCXX_VISIBILITY() 160 __obj = std::forward<_Up>(__new_val); in _GLIBCXX_VISIBILITY()
|
| H A D | stl_map.h | 968 insert_or_assign(const key_type& __k, _Obj&& __obj) in _GLIBCXX_VISIBILITY() 976 std::forward<_Obj>(__obj))); in _GLIBCXX_VISIBILITY() 979 (*__i).second = std::forward<_Obj>(__obj); in _GLIBCXX_VISIBILITY() 986 insert_or_assign(key_type&& __k, _Obj&& __obj) in _GLIBCXX_VISIBILITY() 994 std::forward<_Obj>(__obj))); in _GLIBCXX_VISIBILITY() 997 (*__i).second = std::forward<_Obj>(__obj); in _GLIBCXX_VISIBILITY() 1024 const key_type& __k, _Obj&& __obj) in _GLIBCXX_VISIBILITY() 1034 std::forward<_Obj>(__obj))); in _GLIBCXX_VISIBILITY() 1037 (*__i).second = std::forward<_Obj>(__obj); in _GLIBCXX_VISIBILITY() 1044 insert_or_assign(const_iterator __hint, key_type&& __k, _Obj&& __obj) in _GLIBCXX_VISIBILITY() [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/backward/ |
| H A D | hashtable.h | 444 insert_unique(const value_type& __obj) in _GLIBCXX_VISIBILITY() 447 return insert_unique_noresize(__obj); in _GLIBCXX_VISIBILITY() 451 insert_equal(const value_type& __obj) in _GLIBCXX_VISIBILITY() 454 return insert_equal_noresize(__obj); in _GLIBCXX_VISIBILITY() 458 insert_unique_noresize(const value_type& __obj); in _GLIBCXX_VISIBILITY() 461 insert_equal_noresize(const value_type& __obj); in _GLIBCXX_VISIBILITY() 514 find_or_insert(const value_type& __obj); in _GLIBCXX_VISIBILITY() 599 _M_bkt_num(const value_type& __obj) const in _GLIBCXX_VISIBILITY() 600 { return _M_bkt_num_key(_M_get_key(__obj)); } in _GLIBCXX_VISIBILITY() 607 _M_bkt_num(const value_type& __obj, std::size_t __n) const in _GLIBCXX_VISIBILITY() [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/backward/ |
| H A D | hashtable.h | 444 insert_unique(const value_type& __obj) in _GLIBCXX_VISIBILITY() 447 return insert_unique_noresize(__obj); in _GLIBCXX_VISIBILITY() 451 insert_equal(const value_type& __obj) in _GLIBCXX_VISIBILITY() 454 return insert_equal_noresize(__obj); in _GLIBCXX_VISIBILITY() 458 insert_unique_noresize(const value_type& __obj); in _GLIBCXX_VISIBILITY() 461 insert_equal_noresize(const value_type& __obj); in _GLIBCXX_VISIBILITY() 514 find_or_insert(const value_type& __obj); in _GLIBCXX_VISIBILITY() 599 _M_bkt_num(const value_type& __obj) const in _GLIBCXX_VISIBILITY() 600 { return _M_bkt_num_key(_M_get_key(__obj)); } in _GLIBCXX_VISIBILITY() 607 _M_bkt_num(const value_type& __obj, std::size_t __n) const in _GLIBCXX_VISIBILITY() [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/ |
| H A D | codecvt_specializations.h | 104 encoding_state(const encoding_state& __obj) : _M_in_desc(0), _M_out_desc(0) in _GLIBCXX_VISIBILITY() 105 { construct(__obj); } in _GLIBCXX_VISIBILITY() 109 operator=(const encoding_state& __obj) in _GLIBCXX_VISIBILITY() 111 construct(__obj); in _GLIBCXX_VISIBILITY() 178 construct(const encoding_state& __obj) in _GLIBCXX_VISIBILITY() 181 _M_int_enc = __obj._M_int_enc; in _GLIBCXX_VISIBILITY() 182 _M_ext_enc = __obj._M_ext_enc; in _GLIBCXX_VISIBILITY() 183 _M_ext_bom = __obj._M_ext_bom; in _GLIBCXX_VISIBILITY() 184 _M_int_bom = __obj._M_int_bom; in _GLIBCXX_VISIBILITY() 185 _M_bytes = __obj._M_bytes; in _GLIBCXX_VISIBILITY()
|
| /netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/ |
| H A D | codecvt_specializations.h | 104 encoding_state(const encoding_state& __obj) : _M_in_desc(0), _M_out_desc(0) in _GLIBCXX_VISIBILITY() 105 { construct(__obj); } in _GLIBCXX_VISIBILITY() 109 operator=(const encoding_state& __obj) in _GLIBCXX_VISIBILITY() 111 construct(__obj); in _GLIBCXX_VISIBILITY() 178 construct(const encoding_state& __obj) in _GLIBCXX_VISIBILITY() 181 _M_int_enc = __obj._M_int_enc; in _GLIBCXX_VISIBILITY() 182 _M_ext_enc = __obj._M_ext_enc; in _GLIBCXX_VISIBILITY() 183 _M_ext_bom = __obj._M_ext_bom; in _GLIBCXX_VISIBILITY() 184 _M_int_bom = __obj._M_int_bom; in _GLIBCXX_VISIBILITY() 185 _M_bytes = __obj._M_bytes; in _GLIBCXX_VISIBILITY()
|
| /netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/debug/ |
| H A D | unordered_map | 327 insert(const value_type& __obj) 330 auto __res = _Base::insert(__obj); 350 insert(_Pair&& __obj) 353 auto __res = _Base::insert(std::forward<_Pair>(__obj)); 359 insert(const_iterator __hint, const value_type& __obj) 363 auto __it = _Base::insert(__hint.base(), __obj); 384 insert(const_iterator __hint, _Pair&& __obj) 388 auto __it = _Base::insert(__hint.base(), std::forward<_Pair>(__obj)); 460 insert_or_assign(const key_type& __k, _Obj&& __obj) 463 std::forward<_Obj>(__obj)); [all …]
|
| H A D | unordered_set | 321 insert(const value_type& __obj) 324 auto __res = _Base::insert(__obj); 330 insert(const_iterator __hint, const value_type& __obj) 334 auto __it = _Base::insert(__hint.base(), __obj); 340 insert(value_type&& __obj) 343 auto __res = _Base::insert(std::move(__obj)); 349 insert(const_iterator __hint, value_type&& __obj) 353 auto __it = _Base::insert(__hint.base(), std::move(__obj)); 890 insert(const value_type& __obj) 893 auto __it = _Base::insert(__obj); [all …]
|
| H A D | map.h | 393 insert_or_assign(const key_type& __k, _Obj&& __obj) in _GLIBCXX_VISIBILITY() 396 std::forward<_Obj>(__obj)); in _GLIBCXX_VISIBILITY() 402 insert_or_assign(key_type&& __k, _Obj&& __obj) in _GLIBCXX_VISIBILITY() 405 std::forward<_Obj>(__obj)); in _GLIBCXX_VISIBILITY() 412 const key_type& __k, _Obj&& __obj) in _GLIBCXX_VISIBILITY() 418 std::forward<_Obj>(__obj)), in _GLIBCXX_VISIBILITY() 425 insert_or_assign(const_iterator __hint, key_type&& __k, _Obj&& __obj) in _GLIBCXX_VISIBILITY() 431 std::forward<_Obj>(__obj)), in _GLIBCXX_VISIBILITY()
|
| /netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/debug/ |
| H A D | unordered_map | 352 insert(const value_type& __obj) 355 auto __res = _Base::insert(__obj); 375 insert(_Pair&& __obj) 378 auto __res = _Base::insert(std::forward<_Pair>(__obj)); 384 insert(const_iterator __hint, const value_type& __obj) 388 auto __it = _Base::insert(__hint.base(), __obj); 409 insert(const_iterator __hint, _Pair&& __obj) 413 auto __it = _Base::insert(__hint.base(), std::forward<_Pair>(__obj)); 485 insert_or_assign(const key_type& __k, _Obj&& __obj) 488 std::forward<_Obj>(__obj)); [all …]
|
| H A D | map.h | 395 insert_or_assign(const key_type& __k, _Obj&& __obj) in _GLIBCXX_VISIBILITY() 398 std::forward<_Obj>(__obj)); in _GLIBCXX_VISIBILITY() 404 insert_or_assign(key_type&& __k, _Obj&& __obj) in _GLIBCXX_VISIBILITY() 407 std::forward<_Obj>(__obj)); in _GLIBCXX_VISIBILITY() 414 const key_type& __k, _Obj&& __obj) in _GLIBCXX_VISIBILITY() 420 std::forward<_Obj>(__obj)), in _GLIBCXX_VISIBILITY() 427 insert_or_assign(const_iterator __hint, key_type&& __k, _Obj&& __obj) in _GLIBCXX_VISIBILITY() 433 std::forward<_Obj>(__obj)), in _GLIBCXX_VISIBILITY()
|
| H A D | unordered_set | 348 insert(const value_type& __obj) 351 auto __res = _Base::insert(__obj); 357 insert(const_iterator __hint, const value_type& __obj) 361 auto __it = _Base::insert(__hint.base(), __obj); 367 insert(value_type&& __obj) 370 auto __res = _Base::insert(std::move(__obj)); 376 insert(const_iterator __hint, value_type&& __obj) 380 auto __it = _Base::insert(__hint.base(), std::move(__obj)); 1028 insert(const value_type& __obj) 1031 auto __it = _Base::insert(__obj); [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/include/ |
| H A D | obstack.h | 421 void *__obj = (void *) (OBJ); \ 422 if (__obj > (void *) __o->chunk && __obj < (void *) __o->chunk_limit) \ 423 __o->next_free = __o->object_base = (char *) __obj; \ 425 _obstack_free (__o, __obj); })
|
| /netbsd-src/external/gpl3/binutils.old/dist/include/ |
| H A D | obstack.h | 421 void *__obj = (void *) (OBJ); \ 422 if (__obj > (void *) __o->chunk && __obj < (void *) __o->chunk_limit) \ 423 __o->next_free = __o->object_base = (char *) __obj; \ 425 _obstack_free (__o, __obj); })
|
| /netbsd-src/external/gpl3/binutils/dist/include/ |
| H A D | obstack.h | 421 void *__obj = (void *) (OBJ); \ 422 if (__obj > (void *) __o->chunk && __obj < (void *) __o->chunk_limit) \ 423 __o->next_free = __o->object_base = (char *) __obj; \ 425 _obstack_free (__o, __obj); })
|
| /netbsd-src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/ |
| H A D | obstack.h | 404 void *__obj = (OBJ); \ 405 if (__obj > (void *)__o->chunk && __obj < (void *)__o->chunk_limit) \ 406 __o->next_free = __o->object_base = (char *)__obj; \ 407 else (__obstack_free) (__o, __obj); })
|
| /netbsd-src/external/gpl2/gettext/dist/gettext-tools/libgettextpo/ |
| H A D | obstack.h | 404 void *__obj = (OBJ); \ 405 if (__obj > (void *)__o->chunk && __obj < (void *)__o->chunk_limit) \ 406 __o->next_free = __o->object_base = (char *)__obj; \ 407 else (__obstack_free) (__o, __obj); })
|
| /netbsd-src/external/gpl3/gcc/dist/include/ |
| H A D | obstack.h | 421 void *__obj = (void *) (OBJ); \ 422 if (__obj > (void *) __o->chunk && __obj < (void *) __o->chunk_limit) \ 423 __o->next_free = __o->object_base = (char *) __obj; \ 425 _obstack_free (__o, __obj); })
|
| /netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/profile/ |
| H A D | unordered_set | 225 insert(const value_type& __obj) 228 std::pair<iterator, bool> __res = _Base::insert(__obj); 243 insert(value_type&& __obj) 246 std::pair<iterator, bool> __res = _Base::insert(std::move(__obj)); 481 insert(const value_type& __obj) 484 iterator __res = _Base::insert(__obj); 499 insert(value_type&& __obj) 502 iterator __res = _Base::insert(std::move(__obj));
|