Searched refs:__hint (Results 1 - 14 of 14) sorted by relevance

/haiku-buildtools/gcc/gcc/testsuite/g++.dg/cpp0x/
H A Derror5.C92 _S_allocate(_Alloc2& __a, size_t __n, const_void_pointer __hint) argument
93 { return __a.allocate(__n, __hint); }
97 allocate(_Alloc& __a, size_t __n, const_void_pointer __hint) argument
98 { return _S_allocate(__a, __n, __hint); }
/haiku-buildtools/gcc/libstdc++-v3/include/ext/
H A Ddebug_allocator.h131 allocate(size_type __n, const void* __hint) argument
133 pointer __res = _M_allocator.allocate(__n + _M_extra, __hint);
H A Dextptr_allocator.h95 pointer allocate(size_type __n, void* __hint = 0)
96 { return _M_real_alloc.allocate(__n,__hint); }
/haiku-buildtools/gcc/libstdc++-v3/include/profile/
H A Dmultiset.h470 _M_hint_used(_Base_const_iterator __hint, _Base_iterator __res) argument
472 return (__hint == __res
473 || (__hint == _M_base().end() && ++__res == _M_base().end())
474 || (__hint != _M_base().end() && (++__hint == __res
475 || ++__res == --__hint)));
H A Dmap.h512 _M_hint_used(_Base_const_iterator __hint, _Base_iterator __res) argument
514 return (__hint == __res
515 || (__hint == _M_base().end() && ++__res == _M_base().end())
516 || (__hint != _M_base().end() && (++__hint == __res
517 || ++__res == --__hint)));
H A Dmultimap.h471 _M_hint_used(_Base_const_iterator __hint, _Base_iterator __res) argument
473 return (__hint == __res
474 || (__hint == _M_base().end() && ++__res == _M_base().end())
475 || (__hint != _M_base().end() && (++__hint == __res
476 || ++__res == --__hint)));
H A Dset.h453 _M_hint_used(_Base_const_iterator __hint, _Base_iterator __res) argument
455 return (__hint == __res
456 || (__hint == _M_base().end() && ++__res == _M_base().end())
457 || (__hint != _M_base().end() && (++__hint == __res
458 || ++__res == --__hint)));
/haiku-buildtools/gcc/libstdc++-v3/include/bits/
H A Dalloc_traits.h226 _S_allocate(_Alloc2& __a, size_type __n, const_void_pointer __hint) argument
227 { return __a.allocate(__n, __hint); }
366 * @param __hint Aid to locality.
374 allocate(_Alloc& __a, size_type __n, const_void_pointer __hint) argument
375 { return _S_allocate(__a, __n, __hint); }
497 * @param __hint Aid to locality.
504 allocate(allocator_type& __a, size_type __n, const_void_pointer __hint) argument
505 { return __a.allocate(__n, __hint); }
H A Dunordered_set.h423 * @param __hint An iterator that serves as a hint as to where the
441 insert(const_iterator __hint, const value_type& __x) argument
442 { return _M_h.insert(__hint, __x); }
445 insert(const_iterator __hint, value_type&& __x) argument
446 { return _M_h.insert(__hint, std::move(__x)); }
1079 * @param __hint An iterator that serves as a hint as to where the
1094 insert(const_iterator __hint, const value_type& __x) argument
1095 { return _M_h.insert(__hint, __x); }
1098 insert(const_iterator __hint, value_type&& __x) argument
1099 { return _M_h.insert(__hint, st
[all...]
H A Dunordered_map.h446 * @param __hint An iterator that serves as a hint as to where the
466 insert(const_iterator __hint, const value_type& __x) argument
467 { return _M_h.insert(__hint, __x); }
473 insert(const_iterator __hint, _Pair&& __x) argument
474 { return _M_h.insert(__hint, std::forward<_Pair>(__x)); }
1182 * @param __hint An iterator that serves as a hint as to where the
1200 insert(const_iterator __hint, const value_type& __x) argument
1201 { return _M_h.insert(__hint, __x); }
1207 insert(const_iterator __hint, _Pair&& __x) argument
1208 { return _M_h.insert(__hint, st
[all...]
H A Dhashtable.h661 _M_insert_multi_node(__node_type* __hint,
730 emplace_hint(const_iterator __hint, _Args&&... __args) argument
732 return _M_emplace(__hint, __unique_keys(),
1560 _M_emplace(const_iterator __hint, std::false_type, _Args&&... __args)
1578 return _M_insert_multi_node(__hint._M_cur, __code, __node);
1627 _M_insert_multi_node(__node_type* __hint, __hash_code __code,
1647 = __builtin_expect(__hint != nullptr, false)
1648 && this->_M_equals(__k, __code, __hint)
1649 ? __hint
1656 if (__builtin_expect(__prev == __hint, fals
[all...]
H A Dhashtable_policy.h719 insert(const_iterator __hint, const value_type& __v) argument
723 return __h._M_insert(__hint, __v, __node_gen, __unique_keys());
816 insert(const_iterator __hint, value_type&& __v) argument
820 return __h._M_insert(__hint, std::move(__v), __node_gen,
857 insert(const_iterator __hint, value_type&& __v) argument
861 return __h._M_insert(__hint, std::move(__v), __node_gen,
908 insert(const_iterator __hint, _Pair&& __v) argument
911 return __h._M_emplace(__hint, __unique_keys(),
/haiku-buildtools/legacy/gcc/libstdc++/stl/
H A Dstl_hash_map.h197 void resize(size_type __hint) { _M_ht.resize(__hint); } argument
378 void resize(size_type __hint) { _M_ht.resize(__hint); } argument
H A Dstl_hash_set.h192 void resize(size_type __hint) { _M_ht.resize(__hint); } argument
364 void resize(size_type __hint) { _M_ht.resize(__hint); } argument

Completed in 145 milliseconds