Searched refs:__obj (Results 1 – 8 of 8) sorted by relevance
/reactos/sdk/lib/3rdparty/stlport/src/ |
H A D | allocators.cpp | 766 typedef _Pthread_alloc_obj __obj; typedef 854 typedef _Pthread_alloc_obj __obj; in _M_refill() typedef 858 __obj * __result; in _M_refill() 869 __result = (__obj *)__chunk; in _M_refill() 936 typedef _Pthread_alloc_obj __obj; in _S_chunk_alloc() typedef 991 typedef _Pthread_alloc_obj __obj; in allocate() typedef 993 __obj * __result; in allocate() 1015 typedef _Pthread_alloc_obj __obj; in deallocate() typedef 1016 __obj *__q = (__obj *)__p; in deallocate() 1037 __obj * __result; in allocate() [all …]
|
/reactos/sdk/include/c++/stlport/stl/ |
H A D | _hashtable.c | 190 _M_elems.insert_after(__pos, __obj)._M_node); in _M_insert_noresize() 199 ::insert_unique_noresize(const value_type& __obj) { in insert_unique_noresize() argument 200 const size_type __n = _M_bkt_num(__obj); in insert_unique_noresize() 206 if (_M_equals(_M_get_key(*__cur), _M_get_key(__obj))) { in insert_unique_noresize() 230 ::insert_equal_noresize(const value_type& __obj) { in insert_equal_noresize() argument 231 const size_type __n = _M_bkt_num(__obj); in insert_equal_noresize() 237 if (_M_equals(_M_get_key(*__cur), _M_get_key(__obj))) { in insert_equal_noresize() 242 return _M_elems.insert_after(__cur, __obj); in insert_equal_noresize() 247 return _M_insert_noresize(__n, __obj); in insert_equal_noresize() 254 ::_M_insert(const value_type& __obj) { in _M_insert() argument [all …]
|
H A D | _hashtable.h | 407 pair<iterator, bool> insert_unique(const value_type& __obj) { 409 return insert_unique_noresize(__obj); 412 iterator insert_equal(const value_type& __obj) { 414 return insert_equal_noresize(__obj); 418 iterator _M_insert_noresize(size_type __n, const value_type& __obj); 421 iterator insert_equal_noresize(const value_type& __obj); 585 reference _M_insert(const value_type& __obj); 605 size_type _M_bkt_num(const value_type& __obj) const 606 { return _M_bkt_num_key(_M_get_key(__obj)); } 612 size_type _M_bkt_num(const value_type& __obj, size_t __n) const [all …]
|
H A D | _unordered_set.h | 127 pair<iterator, bool> insert(const value_type& __obj) in _STLP_CREATE_HASH_ITERATOR_TRAITS() 128 { return _M_ht.insert_unique(__obj); } in _STLP_CREATE_HASH_ITERATOR_TRAITS() 129 iterator insert(const_iterator /*__hint*/, const value_type& __obj) in _STLP_CREATE_HASH_ITERATOR_TRAITS() 130 { return _M_ht.insert_unique(__obj); } in _STLP_CREATE_HASH_ITERATOR_TRAITS() 277 iterator insert(const value_type& __obj) in _STLP_CREATE_HASH_ITERATOR_TRAITS() 278 { return _M_ht.insert_equal(__obj); } in _STLP_CREATE_HASH_ITERATOR_TRAITS() 279 iterator insert(const_iterator /*__hint*/, const value_type& __obj) in _STLP_CREATE_HASH_ITERATOR_TRAITS() 280 { return _M_ht.insert_equal(__obj); } in _STLP_CREATE_HASH_ITERATOR_TRAITS()
|
H A D | _unordered_map.h | 133 pair<iterator,bool> insert(const value_type& __obj) in _STLP_CREATE_HASH_ITERATOR_TRAITS() 134 { return _M_ht.insert_unique(__obj); } in _STLP_CREATE_HASH_ITERATOR_TRAITS() 135 iterator insert(const_iterator /*__hint*/, const value_type& __obj) in _STLP_CREATE_HASH_ITERATOR_TRAITS() 136 { return _M_ht.insert_unique(__obj); } in _STLP_CREATE_HASH_ITERATOR_TRAITS() 301 iterator insert(const value_type& __obj) in _STLP_CREATE_HASH_ITERATOR_TRAITS() 302 { return _M_ht.insert_equal(__obj); } in _STLP_CREATE_HASH_ITERATOR_TRAITS() 303 iterator insert(const_iterator /*__hint*/, const value_type& __obj) in _STLP_CREATE_HASH_ITERATOR_TRAITS() 304 { return _M_ht.insert_equal(__obj); } in _STLP_CREATE_HASH_ITERATOR_TRAITS()
|
H A D | _hash_map.h | 179 pair<iterator,bool> insert(const value_type& __obj) in _STLP_CREATE_HASH_ITERATOR_TRAITS() 180 { return _M_ht.insert_unique(__obj); } in _STLP_CREATE_HASH_ITERATOR_TRAITS() 191 pair<iterator,bool> insert_noresize(const value_type& __obj) in _STLP_CREATE_HASH_ITERATOR_TRAITS() 192 { return _M_ht.insert_unique_noresize(__obj); } in _STLP_CREATE_HASH_ITERATOR_TRAITS() 371 iterator insert(const value_type& __obj) in _STLP_CREATE_HASH_ITERATOR_TRAITS() 372 { return _M_ht.insert_equal(__obj); } in _STLP_CREATE_HASH_ITERATOR_TRAITS() 384 iterator insert_noresize(const value_type& __obj) in _STLP_CREATE_HASH_ITERATOR_TRAITS() 385 { return _M_ht.insert_equal_noresize(__obj); } in _STLP_CREATE_HASH_ITERATOR_TRAITS()
|
H A D | _hash_set.h | 181 pair<iterator, bool> insert(const value_type& __obj) in _STLP_CREATE_HASH_ITERATOR_TRAITS() 182 { return _M_ht.insert_unique(__obj); } in _STLP_CREATE_HASH_ITERATOR_TRAITS() 193 pair<iterator, bool> insert_noresize(const value_type& __obj) in _STLP_CREATE_HASH_ITERATOR_TRAITS() 194 { return _M_ht.insert_unique_noresize(__obj); } in _STLP_CREATE_HASH_ITERATOR_TRAITS() 363 iterator insert(const value_type& __obj) { return _M_ht.insert_equal(__obj); } in _STLP_CREATE_HASH_ITERATOR_TRAITS() 374 iterator insert_noresize(const value_type& __obj) in _STLP_CREATE_HASH_ITERATOR_TRAITS() 375 { return _M_ht.insert_equal_noresize(__obj); } in _STLP_CREATE_HASH_ITERATOR_TRAITS()
|
/reactos/sdk/include/c++/stlport/stl/debug/ |
H A D | _hashtable.h | 209 pair<iterator, bool> insert_unique(const value_type& __obj) { in insert_unique() argument 210 pair<_Base_iterator, bool> __res = _M_non_dbg_impl.insert_unique(__obj); in insert_unique() 214 iterator insert_equal(const value_type& __obj) in insert_equal() argument 215 { return iterator(&_M_iter_list, _M_non_dbg_impl.insert_equal(__obj)); } in insert_equal() 217 pair<iterator, bool> insert_unique_noresize(const value_type& __obj) { in insert_unique_noresize() argument 218 pair<_Base_iterator, bool> __res = _M_non_dbg_impl.insert_unique_noresize(__obj); in insert_unique_noresize() 222 iterator insert_equal_noresize(const value_type& __obj) in insert_equal_noresize() argument 223 { return iterator(&_M_iter_list, _M_non_dbg_impl.insert_equal_noresize(__obj)); } in insert_equal_noresize() 313 reference _M_insert(const value_type& __obj) { return _M_non_dbg_impl._M_insert(__obj); } in _M_insert() argument
|