Home
last modified time | relevance | path

Searched refs:__table_ (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/include/__cxx03/ext/
H A Dhash_set233 __table __table_;
267 …_LIBCPP_HIDE_FROM_ABI allocator_type get_allocator() const { return allocator_type(__table_.__node…
269 _LIBCPP_HIDE_FROM_ABI bool empty() const { return __table_.size() == 0; }
270 _LIBCPP_HIDE_FROM_ABI size_type size() const { return __table_.size(); }
271 _LIBCPP_HIDE_FROM_ABI size_type max_size() const { return __table_.max_size(); }
273 _LIBCPP_HIDE_FROM_ABI iterator begin() { return __table_.begin(); }
274 _LIBCPP_HIDE_FROM_ABI iterator end() { return __table_.end(); }
275 _LIBCPP_HIDE_FROM_ABI const_iterator begin() const { return __table_.begin(); }
276 _LIBCPP_HIDE_FROM_ABI const_iterator end() const { return __table_.end(); }
279 return __table_.__insert_unique(__x);
[all …]
H A Dhash_map458 __table __table_;
501 …_LIBCPP_HIDE_FROM_ABI allocator_type get_allocator() const { return allocator_type(__table_.__node…
503 _LIBCPP_HIDE_FROM_ABI bool empty() const { return __table_.size() == 0; }
504 _LIBCPP_HIDE_FROM_ABI size_type size() const { return __table_.size(); }
505 _LIBCPP_HIDE_FROM_ABI size_type max_size() const { return __table_.max_size(); }
507 _LIBCPP_HIDE_FROM_ABI iterator begin() { return __table_.begin(); }
508 _LIBCPP_HIDE_FROM_ABI iterator end() { return __table_.end(); }
509 _LIBCPP_HIDE_FROM_ABI const_iterator begin() const { return __table_.begin(); }
510 _LIBCPP_HIDE_FROM_ABI const_iterator end() const { return __table_.end(); }
513 return __table_.__insert_unique(__x);
[all …]
/freebsd/contrib/llvm-project/libcxx/include/ext/
H A Dhash_set236 __table __table_;
270 …_LIBCPP_HIDE_FROM_ABI allocator_type get_allocator() const { return allocator_type(__table_.__node…
272 _LIBCPP_HIDE_FROM_ABI bool empty() const { return __table_.size() == 0; }
273 _LIBCPP_HIDE_FROM_ABI size_type size() const { return __table_.size(); }
274 _LIBCPP_HIDE_FROM_ABI size_type max_size() const { return __table_.max_size(); }
276 _LIBCPP_HIDE_FROM_ABI iterator begin() { return __table_.begin(); }
277 _LIBCPP_HIDE_FROM_ABI iterator end() { return __table_.end(); }
278 _LIBCPP_HIDE_FROM_ABI const_iterator begin() const { return __table_.begin(); }
279 _LIBCPP_HIDE_FROM_ABI const_iterator end() const { return __table_.end(); }
282 return __table_.__emplace_unique(__x);
[all …]
H A Dhash_map468 __table __table_;
511 …_LIBCPP_HIDE_FROM_ABI allocator_type get_allocator() const { return allocator_type(__table_.__node…
513 _LIBCPP_HIDE_FROM_ABI bool empty() const { return __table_.size() == 0; }
514 _LIBCPP_HIDE_FROM_ABI size_type size() const { return __table_.size(); }
515 _LIBCPP_HIDE_FROM_ABI size_type max_size() const { return __table_.max_size(); }
517 _LIBCPP_HIDE_FROM_ABI iterator begin() { return __table_.begin(); }
518 _LIBCPP_HIDE_FROM_ABI iterator end() { return __table_.end(); }
519 _LIBCPP_HIDE_FROM_ABI const_iterator begin() const { return __table_.begin(); }
520 _LIBCPP_HIDE_FROM_ABI const_iterator end() const { return __table_.end(); }
523 return __table_.__emplace_unique(__x);
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/
H A Dunordered_set583 __table __table_;
634 __table_ = __u.__table_;
639 return allocator_type(__table_.__node_alloc());
642 …_LIBCPP_NODISCARD _LIBCPP_HIDE_FROM_ABI bool empty() const _NOEXCEPT { return __table_.size() == 0…
643 _LIBCPP_HIDE_FROM_ABI size_type size() const _NOEXCEPT { return __table_.size(); }
644 _LIBCPP_HIDE_FROM_ABI size_type max_size() const _NOEXCEPT { return __table_.max_size(); }
646 _LIBCPP_HIDE_FROM_ABI iterator begin() _NOEXCEPT { return __table_.begin(); }
647 _LIBCPP_HIDE_FROM_ABI iterator end() _NOEXCEPT { return __table_.end(); }
648 _LIBCPP_HIDE_FROM_ABI const_iterator begin() const _NOEXCEPT { return __table_.begin(); }
649 _LIBCPP_HIDE_FROM_ABI const_iterator end() const _NOEXCEPT { return __table_.end(); }
[all …]
H A Dunordered_map896 __table __table_;
962 __table_.clear();
963 __table_.hash_function() = __u.__table_.hash_function();
964 __table_.key_eq() = __u.__table_.key_eq();
965 __table_.max_load_factor() = __u.__table_.max_load_factor();
966 __table_.__copy_assign_alloc(__u.__table_);
973 return allocator_type(__table_.__node_alloc());
976 …_LIBCPP_NODISCARD _LIBCPP_HIDE_FROM_ABI bool empty() const _NOEXCEPT { return __table_.size() == 0…
977 _LIBCPP_HIDE_FROM_ABI size_type size() const _NOEXCEPT { return __table_.size(); }
978 _LIBCPP_HIDE_FROM_ABI size_type max_size() const _NOEXCEPT { return __table_.max_size(); }
[all …]
/freebsd/contrib/llvm-project/libcxx/include/
H A Dunordered_set614 __table __table_;
675 : __table_(__hf, __eql, __a) {
677 __table_.__rehash_unique(__n);
737 __table_ = __u.__table_;
747 return allocator_type(__table_.__node_alloc());
750 …[[__nodiscard__]] _LIBCPP_HIDE_FROM_ABI bool empty() const _NOEXCEPT { return __table_.size() == 0…
751 _LIBCPP_HIDE_FROM_ABI size_type size() const _NOEXCEPT { return __table_.size(); }
752 _LIBCPP_HIDE_FROM_ABI size_type max_size() const _NOEXCEPT { return __table_.max_size(); }
754 _LIBCPP_HIDE_FROM_ABI iterator begin() _NOEXCEPT { return __table_.begin(); }
755 _LIBCPP_HIDE_FROM_ABI iterator end() _NOEXCEPT { return __table_.end(); }
[all …]
H A Dunordered_map973 __table __table_;
1040 : __table_(__hf, __eql, typename __table::allocator_type(__a)) {
1042 __table_.__rehash_unique(__n);
1104 __table_ = __u.__table_;
1107 __table_.clear();
1108 __table_.hash_function() = __u.__table_.hash_function();
1109 __table_.key_eq() = __u.__table_.key_eq();
1110 __table_.max_load_factor() = __u.__table_.max_load_factor();
1111 __table_.__copy_assign_alloc(__u.__table_);
1124 return allocator_type(__table_.__node_alloc());
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__functional/
H A Dboyer_moore_searcher.h46 unordered_map<_Key, _Value, _Hash, _BinaryPredicate> __table_; variable
51 : __default_value_(__default_value), __table_(__sz, __hash, __pred) {} in _BMSkipTable()
53 …_LIBCPP_HIDE_FROM_ABI void insert(const key_type& __key, value_type __val) { __table_[__key] = __v… in insert()
56 auto __it = __table_.find(__key);
57 return __it == __table_.end() ? __default_value_ : __it->second;
69 std::array<value_type, 256> __table_; variable
74 std::fill_n(__table_.data(), __table_.size(), __default_value); in _BMSkipTable()
78 __table_[static_cast<unsigned_key_type>(__key)] = __val; in insert()
82 return __table_[static_cast<unsigned_key_type>(__key)];