Home
last modified time | relevance | path

Searched refs:__hint (Results 1 – 6 of 6) sorted by relevance

/freebsd-10-stable/contrib/libstdc++/include/ext/
Ddebug_allocator.h100 allocate(size_type __n, const void* __hint) in allocate() argument
102 pointer __res = _M_allocator.allocate(__n + _M_extra, __hint); in allocate()
Dhash_set244 resize(size_type __hint)
245 { _M_ht.resize(__hint); }
442 resize(size_type __hint)
443 { _M_ht.resize(__hint); }
Dhash_map254 resize(size_type __hint)
255 { _M_ht.resize(__hint); }
473 resize(size_type __hint)
474 { _M_ht.resize(__hint); }
/freebsd-10-stable/contrib/libc++/include/
D__tree1047 __find_leaf(const_iterator __hint,
1054 __find_equal(const_iterator __hint, typename __node_base::pointer& __parent,
1561 // Find leaf place to insert closest to __hint
1562 // First check prior to __hint.
1563 // Next check after __hint.
1569 __tree<_Tp, _Compare, _Allocator>::__find_leaf(const_iterator __hint,
1573 if (__hint == end() || !value_comp()(*__hint, __v)) // check before
1575 // __v <= *__hint
1576 const_iterator __prior = __hint;
1579 // *prev(__hint) <= __v <= *__hint
[all …]
Dscoped_allocator459 pointer allocate(size_type __n, const_void_pointer __hint)
461 allocate(outer_allocator(), __n, __hint);}
Dmemory1441 static pointer allocate(allocator_type& __a, size_type __n, const_void_pointer __hint)
1442 {return allocate(__a, __n, __hint,
1561 const_void_pointer __hint, true_type)
1562 {return __a.allocate(__n, __hint);}