Lines Matching refs:__n

81   explicit hash_set(size_type __n)
82 : _M_ht(__n, hasher(), key_equal(), allocator_type()) {}
83 hash_set(size_type __n, const hasher& __hf)
84 : _M_ht(__n, __hf, key_equal(), allocator_type()) {}
85 hash_set(size_type __n, const hasher& __hf, const key_equal& __eql,
87 : _M_ht(__n, __hf, __eql, __a) {}
95 hash_set(_InputIterator __f, _InputIterator __l, size_type __n)
96 : _M_ht(__n, hasher(), key_equal(), allocator_type())
99 hash_set(_InputIterator __f, _InputIterator __l, size_type __n,
101 : _M_ht(__n, __hf, key_equal(), allocator_type())
104 hash_set(_InputIterator __f, _InputIterator __l, size_type __n,
107 : _M_ht(__n, __hf, __eql, __a)
114 hash_set(const value_type* __f, const value_type* __l, size_type __n)
115 : _M_ht(__n, hasher(), key_equal(), allocator_type())
117 hash_set(const value_type* __f, const value_type* __l, size_type __n,
119 : _M_ht(__n, __hf, key_equal(), allocator_type())
121 hash_set(const value_type* __f, const value_type* __l, size_type __n,
124 : _M_ht(__n, __hf, __eql, __a)
130 hash_set(const_iterator __f, const_iterator __l, size_type __n)
131 : _M_ht(__n, hasher(), key_equal(), allocator_type())
133 hash_set(const_iterator __f, const_iterator __l, size_type __n,
135 : _M_ht(__n, __hf, key_equal(), allocator_type())
137 hash_set(const_iterator __f, const_iterator __l, size_type __n,
140 : _M_ht(__n, __hf, __eql, __a)
195 size_type elems_in_bucket(size_type __n) const
196 { return _M_ht.elems_in_bucket(__n); }
260 explicit hash_multiset(size_type __n)
261 : _M_ht(__n, hasher(), key_equal(), allocator_type()) {}
262 hash_multiset(size_type __n, const hasher& __hf)
263 : _M_ht(__n, __hf, key_equal(), allocator_type()) {}
264 hash_multiset(size_type __n, const hasher& __hf, const key_equal& __eql,
266 : _M_ht(__n, __hf, __eql, __a) {}
274 hash_multiset(_InputIterator __f, _InputIterator __l, size_type __n)
275 : _M_ht(__n, hasher(), key_equal(), allocator_type())
278 hash_multiset(_InputIterator __f, _InputIterator __l, size_type __n,
280 : _M_ht(__n, __hf, key_equal(), allocator_type())
283 hash_multiset(_InputIterator __f, _InputIterator __l, size_type __n,
286 : _M_ht(__n, __hf, __eql, __a)
293 hash_multiset(const value_type* __f, const value_type* __l, size_type __n)
294 : _M_ht(__n, hasher(), key_equal(), allocator_type())
296 hash_multiset(const value_type* __f, const value_type* __l, size_type __n,
298 : _M_ht(__n, __hf, key_equal(), allocator_type())
300 hash_multiset(const value_type* __f, const value_type* __l, size_type __n,
303 : _M_ht(__n, __hf, __eql, __a)
309 hash_multiset(const_iterator __f, const_iterator __l, size_type __n)
310 : _M_ht(__n, hasher(), key_equal(), allocator_type())
312 hash_multiset(const_iterator __f, const_iterator __l, size_type __n,
314 : _M_ht(__n, __hf, key_equal(), allocator_type())
316 hash_multiset(const_iterator __f, const_iterator __l, size_type __n,
319 : _M_ht(__n, __hf, __eql, __a)
367 size_type elems_in_bucket(size_type __n) const
368 { return _M_ht.elems_in_bucket(__n); }