Home
last modified time | relevance | path

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

/llvm-project-15.0.7/libcxx/include/ext/
H A Dhash_set238 __table __table_;
307 void swap(hash_set& __u) {__table_.swap(__u.__table_);}
342 : __table_(__hf, __eql)
350 : __table_(__hf, __eql, __a)
368 : __table_(__hf, __eql)
388 : __table_(__u.__table_)
459 __table __table_;
527 void swap(hash_multiset& __u) {__table_.swap(__u.__table_);}
562 : __table_(__hf, __eql)
589 : __table_(__hf, __eql)
[all …]
H A Dhash_map496 __table __table_;
574 void swap(hash_map& __u) {__table_.swap(__u.__table_);}
617 : __table_(__hf, __eql)
626 : __table_(__hf, __eql, __a)
644 : __table_(__hf, __eql)
664 : __table_(__u.__table_)
769 __table __table_;
845 void swap(hash_multimap& __u) {__table_.swap(__u.__table_);}
883 : __table_(__hf, __eql)
910 : __table_(__hf, __eql)
[all …]
/llvm-project-15.0.7/libcxx/include/
H A Dunordered_set620 __table_ = __u.__table_;
777 {__table_.swap(__u.__table_);}
1002 : __table_(__u.__table_)
1012 : __table_(__u.__table_, __a)
1026 : __table_(_VSTD::move(__u.__table_))
1084 __table_ = _VSTD::move(__u.__table_);
1274 __table_ = __u.__table_;
1415 {__table_.swap(__u.__table_);}
1639 : __table_(__u.__table_)
1649 : __table_(__u.__table_, __a)
[all …]
H A Dunordered_map1159 __table_ = __u.__table_;
1164 __table_.key_eq() = __u.__table_.key_eq();
1433 { __table_.swap(__u.__table_);}
1687 : __table_(__u.__table_)
1711 : __table_(_VSTD::move(__u.__table_))
1771 __table_ = _VSTD::move(__u.__table_);
2047 __table_ = __u.__table_;
2216 {__table_.swap(__u.__table_);}
2459 : __table_(__u.__table_)
2483 : __table_(_VSTD::move(__u.__table_))
[all …]
/llvm-project-15.0.7/libcxx/include/__functional/
H A Dboyer_moore_searcher.h53 unordered_map<_Key, _Value, _Hash, _BinaryPredicate> __table_; variable
59 __table_(__sz, __hash, __pred) {} in _BMSkipTable()
62 __table_[__key] = __val; in insert()
66 auto __it = __table_.find(__key);
67 return __it == __table_.end() ? __default_value_ : __it->second;
82 std::array<value_type, 256> __table_; variable
87 std::fill_n(__table_.data(), __table_.size(), __default_value); in _BMSkipTable()
91 __table_[static_cast<unsigned_key_type>(__key)] = __val; in insert()
95 return __table_[static_cast<unsigned_key_type>(__key)];