/ndk/sources/cxx-stl/stlport/src/ |
D | allocators.cpp | 766 typedef _Pthread_alloc_obj __obj; typedef 775 …d *)__CONST_CAST(_Pthread_alloc_obj**, __free_list), 0, (size_t)_S_NFREELISTS * sizeof(__obj *)); } in _Pthread_alloc_per_thread_state() 854 typedef _Pthread_alloc_obj __obj; in _M_refill() typedef 857 __obj * volatile * __my_free_list; in _M_refill() 858 __obj * __result; in _M_refill() 859 __obj * __current_obj, * __next_obj; in _M_refill() 869 __result = (__obj *)__chunk; in _M_refill() 870 *__my_free_list = __next_obj = (__obj *)(__chunk + __n); in _M_refill() 873 __next_obj = (__obj *)((char *)__next_obj + __n); in _M_refill() 936 typedef _Pthread_alloc_obj __obj; in _S_chunk_alloc() typedef [all …]
|
/ndk/sources/cxx-stl/stlport/stlport/stl/debug/ |
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
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _hashtable.c | 183 ::_M_insert_noresize(size_type __n, const value_type& __obj) { in _M_insert_noresize() argument 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() 209 _STLP_ASSERT(_M_hash(_M_get_key(*__cur)) == _M_hash(_M_get_key(__obj))) in insert_unique_noresize() 218 __cur = _M_elems.insert_after(_ElemsIte(_M_buckets[__n]), __obj); in insert_unique_noresize() 223 return pair<iterator, bool>(_M_insert_noresize(__n, __obj), true); 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() [all …]
|
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); 420 pair<iterator, bool> insert_unique_noresize(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)); } [all …]
|
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()
|
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()
|
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()
|
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()
|
/ndk/build/core/ |
D | definitions.mk | 1308 $(eval __obj := $1)\ 1310 $(eval __obj := $(__obj:%$(__ext)=%$(TARGET_OBJ_EXTENSION)))\ 1312 $(__obj)\ 1329 $(eval __obj := $1)\ 1331 $(eval __obj := $(__obj:%$(__ext)=%.cpp))\ 1333 $(dir $(__obj))ScriptC_$(notdir $(__obj))\ 1339 $(eval __obj := $1)\ 1341 $(eval __obj := $(__obj:%$(__ext)=%.bc))\ 1343 $(__obj)\ 1349 $(eval __obj := $1)\ [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | utility | 758 _T1 exchange(_T1& __obj, _T2 && __new_value) 760 _T1 __old_value = _VSTD::move(__obj); 761 __obj = _VSTD::forward<_T2>(__new_value);
|