| /netbsd-src/external/gpl3/gcc.old/dist/gcc/analyzer/ |
| H A D | exploded-graph.h | 410 typedef const point_and_state *key_type; typedef 414 static inline hashval_t hash (const key_type &k) in hash() 417 gcc_assert (k != reinterpret_cast<key_type> (1)); in hash() 420 static inline bool equal_keys (const key_type &k1, const key_type &k2) in equal_keys() 424 gcc_assert (k1 != reinterpret_cast<key_type> (1)); in equal_keys() 425 gcc_assert (k2 != reinterpret_cast<key_type> (1)); in equal_keys() 440 entry.m_key = reinterpret_cast<key_type> (1); in mark_deleted() 450 return entry.m_key == reinterpret_cast<key_type> (1); in is_deleted() 480 typedef const program_point *key_type; typedef 484 static inline hashval_t hash (const key_type &k) in hash() [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/analyzer/ |
| H A D | exploded-graph.h | 474 typedef const point_and_state *key_type; typedef 478 static inline hashval_t hash (const key_type &k) in hash() 481 gcc_assert (k != reinterpret_cast<key_type> (1)); in hash() 484 static inline bool equal_keys (const key_type &k1, const key_type &k2) in equal_keys() 488 gcc_assert (k1 != reinterpret_cast<key_type> (1)); in equal_keys() 489 gcc_assert (k2 != reinterpret_cast<key_type> (1)); in equal_keys() 504 entry.m_key = reinterpret_cast<key_type> (1); in mark_deleted() 514 return entry.m_key == reinterpret_cast<key_type> (1); in is_deleted() 544 typedef const program_point *key_type; typedef 548 static inline hashval_t hash (const key_type &k) in hash() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| H A D | ProgramStateTrait.h | 149 using key_type = Key; 162 static lookup_type Lookup(data_type B, key_type K) { 166 static data_type Set(data_type B, key_type K, value_type E, 171 static data_type Remove(data_type B, key_type K, context_type F) { 175 static bool Contains(data_type B, key_type K) { 197 using key_type = Key; 208 static data_type Add(data_type B, key_type K, context_type F) { 212 static data_type Remove(data_type B, key_type K, context_type F) { 216 static bool Contains(data_type B, key_type K) { 237 using key_type = T; [all …]
|
| /netbsd-src/external/apache2/llvm/dist/libcxx/include/ |
| H A D | map | 26 typedef Key key_type; 28 typedef pair<const key_type, mapped_type> value_type; 118 mapped_type& operator[](const key_type& k); 119 mapped_type& operator[](key_type&& k); 121 mapped_type& at(const key_type& k); 122 const mapped_type& at(const key_type& k) const; 142 node_type extract(const key_type& x); // C++17 147 pair<iterator, bool> try_emplace(const key_type& k, Args&&... args); // C++17 149 pair<iterator, bool> try_emplace(key_type&& k, Args&&... args); // C++17 151 iterator try_emplace(const_iterator hint, const key_type& k, Args&&... args); // C++17 [all …]
|
| H A D | set | 26 typedef Key key_type; 27 typedef key_type value_type; 120 node_type extract(const key_type& x); // C++17 126 size_type erase(const key_type& k); 151 iterator find(const key_type& k); 152 const_iterator find(const key_type& k) const; 160 size_type count(const key_type& k) const; 162 bool contains(const key_type& x) const; // C++20 165 iterator lower_bound(const key_type& k); 166 const_iterator lower_bound(const key_type& k) const; [all …]
|
| H A D | unordered_map | 28 typedef Key key_type; 33 typedef pair<const key_type, mapped_type> value_type; 128 node_type extract(const key_type& x); // C++17 133 pair<iterator, bool> try_emplace(const key_type& k, Args&&... args); // C++17 135 pair<iterator, bool> try_emplace(key_type&& k, Args&&... args); // C++17 137 iterator try_emplace(const_iterator hint, const key_type& k, Args&&... args); // C++17 139 iterator try_emplace(const_iterator hint, key_type&& k, Args&&... args); // C++17 141 pair<iterator, bool> insert_or_assign(const key_type& k, M&& obj); // C++17 143 pair<iterator, bool> insert_or_assign(key_type&& k, M&& obj); // C++17 145 iterator insert_or_assign(const_iterator hint, const key_type& k, M&& obj); // C++17 [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/ |
| H A D | typed-splay-tree.h | 28 typedef KEY_TYPE key_type; typedef 31 typedef int (*compare_fn) (key_type, key_type); 32 typedef void (*delete_key_fn) (key_type); 34 typedef int (*foreach_fn) (key_type, value_type, void *); 41 value_type lookup (key_type k); 42 value_type predecessor (key_type k); 43 value_type successor (key_type k); 44 void insert (key_type k, value_type v); 45 void remove (key_type k); 55 typedef key_type splay_tree_key; [all …]
|
| H A D | hash-map-traits.h | 34 typedef typename H::value_type key_type; typedef 36 static inline hashval_t hash (const key_type &); 37 static inline bool equal_keys (const key_type &, const key_type &); 48 simple_hashmap_traits <H, Value>::hash (const key_type &h) in hash() 55 simple_hashmap_traits <H, Value>::equal_keys (const key_type &k1, in equal_keys() 56 const key_type &k2) in equal_keys() 171 typedef Key key_type; typedef
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/ |
| H A D | typed-splay-tree.h | 28 typedef KEY_TYPE key_type; typedef 31 typedef int (*compare_fn) (key_type, key_type); 32 typedef void (*delete_key_fn) (key_type); 34 typedef int (*foreach_fn) (key_type, value_type, void *); 41 value_type lookup (key_type k); 42 value_type predecessor (key_type k); 43 value_type successor (key_type k); 44 void insert (key_type k, value_type v); 45 void remove (key_type k); 55 typedef key_type splay_tree_key; [all …]
|
| H A D | hash-map-traits.h | 34 typedef typename H::value_type key_type; typedef 36 static inline hashval_t hash (const key_type &); 37 static inline bool equal_keys (const key_type &, const key_type &); 48 simple_hashmap_traits <H, Value>::hash (const key_type &h) in hash() 55 simple_hashmap_traits <H, Value>::equal_keys (const key_type &k1, in equal_keys() 56 const key_type &k2) in equal_keys() 171 typedef Key key_type; typedef
|
| /netbsd-src/lib/libcurses/ |
| H A D | getch.c | 214 static void add_key_sequence(SCREEN *screen, const char *sequence, int key_type); 215 static key_entry_t *add_new_key(keymap_t *current, char ch, int key_type, 217 static void delete_key_sequence(keymap_t *current, int key_type); 218 static void do_keyok(keymap_t *current, int key_type, bool set, bool flag, 259 add_new_key(keymap_t *current, char chr, int key_type, int symbol) in add_new_key() argument 266 unctrl(chr), key_type, symbol); in add_new_key() 302 the_key->type = key_type; in add_new_key() 304 switch (key_type) { in add_new_key() 337 delete_key_sequence(keymap_t *current, int key_type) in delete_key_sequence() argument 354 delete_key_sequence(key->value.next, key_type); in delete_key_sequence() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/libcxx/include/ext/ |
| H A D | hash_set | 26 typedef Value key_type; 27 typedef key_type value_type; 69 size_type erase(const key_type& k); 78 iterator find(const key_type& k); 79 const_iterator find(const key_type& k) const; 80 size_type count(const key_type& k) const; 81 pair<iterator, iterator> equal_range(const key_type& k); 82 pair<const_iterator, const_iterator> equal_range(const key_type& k) const; 112 typedef Value key_type; 113 typedef key_type value_type; [all …]
|
| H A D | hash_map | 26 typedef Key key_type; 31 typedef pair<const key_type, mapped_type> value_type; 73 size_type erase(const key_type& k); 82 iterator find(const key_type& k); 83 const_iterator find(const key_type& k) const; 84 size_type count(const key_type& k) const; 85 pair<iterator, iterator> equal_range(const key_type& k); 86 pair<const_iterator, const_iterator> equal_range(const key_type& k) const; 88 mapped_type& operator[](const key_type& k); 118 typedef Key key_type; [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/ |
| H A D | stl_map.h | 105 typedef _Key key_type; in _GLIBCXX_VISIBILITY() typedef 154 typedef _Rb_tree<key_type, value_type, _Select1st<value_type>, in _GLIBCXX_VISIBILITY() 504 operator[](const key_type& __k) in _GLIBCXX_VISIBILITY() 514 std::tuple<const key_type&>(__k), in _GLIBCXX_VISIBILITY() 524 operator[](key_type&& __k) in _GLIBCXX_VISIBILITY() 549 at(const key_type& __k) in _GLIBCXX_VISIBILITY() 558 at(const key_type& __k) const in _GLIBCXX_VISIBILITY() 597 const key_type& __k = __a; in _GLIBCXX_VISIBILITY() 656 extract(const key_type& __x) in _GLIBCXX_VISIBILITY() 723 try_emplace(const key_type& __k, _Args&&... __args) in _GLIBCXX_VISIBILITY() [all …]
|
| H A D | unordered_map.h | 113 typedef typename _Hashtable::key_type key_type; in _GLIBCXX_VISIBILITY() typedef 435 extract(const key_type& __key) in _GLIBCXX_VISIBILITY() 473 try_emplace(const key_type& __k, _Args&&... __args) in _GLIBCXX_VISIBILITY() 481 try_emplace(key_type&& __k, _Args&&... __args) in _GLIBCXX_VISIBILITY() 517 try_emplace(const_iterator __hint, const key_type& __k, in _GLIBCXX_VISIBILITY() 527 try_emplace(const_iterator __hint, key_type&& __k, _Args&&... __args) in _GLIBCXX_VISIBILITY() 656 insert_or_assign(const key_type& __k, _Obj&& __obj) in _GLIBCXX_VISIBILITY() 668 insert_or_assign(key_type&& __k, _Obj&& __obj) in _GLIBCXX_VISIBILITY() 705 insert_or_assign(const_iterator __hint, const key_type& __k, in _GLIBCXX_VISIBILITY() 717 insert_or_assign(const_iterator __hint, key_type&& __k, _Obj&& __obj) in _GLIBCXX_VISIBILITY() [all …]
|
| H A D | stl_multiset.h | 121 typedef _Key key_type; in _GLIBCXX_VISIBILITY() typedef 132 typedef _Rb_tree<key_type, value_type, _Identity<value_type>, in _GLIBCXX_VISIBILITY() 580 extract(const key_type& __x) in _GLIBCXX_VISIBILITY() 671 erase(const key_type& __x) in _GLIBCXX_VISIBILITY() 732 count(const key_type& __x) const in _GLIBCXX_VISIBILITY() 751 contains(const key_type& __x) const in _GLIBCXX_VISIBILITY() 777 find(const key_type& __x) in _GLIBCXX_VISIBILITY() 781 find(const key_type& __x) const in _GLIBCXX_VISIBILITY() 812 lower_bound(const key_type& __x) in _GLIBCXX_VISIBILITY() 816 lower_bound(const key_type& __x) const in _GLIBCXX_VISIBILITY() [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/ |
| H A D | stl_map.h | 103 typedef _Key key_type; in _GLIBCXX_VISIBILITY() typedef 149 typedef _Rb_tree<key_type, value_type, _Select1st<value_type>, in _GLIBCXX_VISIBILITY() 492 operator[](const key_type& __k) in _GLIBCXX_VISIBILITY() 502 std::tuple<const key_type&>(__k), in _GLIBCXX_VISIBILITY() 512 operator[](key_type&& __k) in _GLIBCXX_VISIBILITY() 537 at(const key_type& __k) in _GLIBCXX_VISIBILITY() 546 at(const key_type& __k) const in _GLIBCXX_VISIBILITY() 624 extract(const key_type& __x) in _GLIBCXX_VISIBILITY() 691 try_emplace(const key_type& __k, _Args&&... __args) in _GLIBCXX_VISIBILITY() 708 try_emplace(key_type&& __k, _Args&&... __args) in _GLIBCXX_VISIBILITY() [all …]
|
| H A D | unordered_map.h | 111 typedef typename _Hashtable::key_type key_type; in _GLIBCXX_VISIBILITY() typedef 433 extract(const key_type& __key) in _GLIBCXX_VISIBILITY() 471 try_emplace(const key_type& __k, _Args&&... __args) in _GLIBCXX_VISIBILITY() 489 try_emplace(key_type&& __k, _Args&&... __args) in _GLIBCXX_VISIBILITY() 534 try_emplace(const_iterator __hint, const key_type& __k, in _GLIBCXX_VISIBILITY() 549 try_emplace(const_iterator __hint, key_type&& __k, _Args&&... __args) in _GLIBCXX_VISIBILITY() 683 insert_or_assign(const key_type& __k, _Obj&& __obj) in _GLIBCXX_VISIBILITY() 701 insert_or_assign(key_type&& __k, _Obj&& __obj) in _GLIBCXX_VISIBILITY() 744 insert_or_assign(const_iterator __hint, const key_type& __k, in _GLIBCXX_VISIBILITY() 762 insert_or_assign(const_iterator __hint, key_type&& __k, _Obj&& __obj) in _GLIBCXX_VISIBILITY() [all …]
|
| H A D | stl_multiset.h | 120 typedef _Key key_type; in _GLIBCXX_VISIBILITY() typedef 131 typedef _Rb_tree<key_type, value_type, _Identity<value_type>, in _GLIBCXX_VISIBILITY() 578 extract(const key_type& __x) in _GLIBCXX_VISIBILITY() 669 erase(const key_type& __x) in _GLIBCXX_VISIBILITY() 730 count(const key_type& __x) const in _GLIBCXX_VISIBILITY() 749 contains(const key_type& __x) const in _GLIBCXX_VISIBILITY() 775 find(const key_type& __x) in _GLIBCXX_VISIBILITY() 779 find(const key_type& __x) const in _GLIBCXX_VISIBILITY() 810 lower_bound(const key_type& __x) in _GLIBCXX_VISIBILITY() 814 lower_bound(const key_type& __x) const in _GLIBCXX_VISIBILITY() [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/debug/ |
| H A D | map.h | 64 typedef _Key key_type; in _GLIBCXX_VISIBILITY() typedef 348 try_emplace(const key_type& __k, _Args&&... __args) in _GLIBCXX_VISIBILITY() 357 try_emplace(key_type&& __k, _Args&&... __args) in _GLIBCXX_VISIBILITY() 366 try_emplace(const_iterator __hint, const key_type& __k, in _GLIBCXX_VISIBILITY() 380 try_emplace(const_iterator __hint, key_type&& __k, _Args&&... __args) in _GLIBCXX_VISIBILITY() 393 insert_or_assign(const key_type& __k, _Obj&& __obj) in _GLIBCXX_VISIBILITY() 402 insert_or_assign(key_type&& __k, _Obj&& __obj) in _GLIBCXX_VISIBILITY() 412 const key_type& __k, _Obj&& __obj) in _GLIBCXX_VISIBILITY() 425 insert_or_assign(const_iterator __hint, key_type&& __k, _Obj&& __obj) in _GLIBCXX_VISIBILITY() 450 extract(const key_type& __key) in _GLIBCXX_VISIBILITY() [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/debug/ |
| H A D | map.h | 74 typedef _Key key_type; in _GLIBCXX_VISIBILITY() typedef 350 try_emplace(const key_type& __k, _Args&&... __args) in _GLIBCXX_VISIBILITY() 359 try_emplace(key_type&& __k, _Args&&... __args) in _GLIBCXX_VISIBILITY() 368 try_emplace(const_iterator __hint, const key_type& __k, in _GLIBCXX_VISIBILITY() 382 try_emplace(const_iterator __hint, key_type&& __k, _Args&&... __args) in _GLIBCXX_VISIBILITY() 395 insert_or_assign(const key_type& __k, _Obj&& __obj) in _GLIBCXX_VISIBILITY() 404 insert_or_assign(key_type&& __k, _Obj&& __obj) in _GLIBCXX_VISIBILITY() 414 const key_type& __k, _Obj&& __obj) in _GLIBCXX_VISIBILITY() 427 insert_or_assign(const_iterator __hint, key_type&& __k, _Obj&& __obj) in _GLIBCXX_VISIBILITY() 452 extract(const key_type& __key) in _GLIBCXX_VISIBILITY() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/utils/ |
| H A D | convert_arm_neon.py | 76 key_type = 0 80 key_type = 1 92 key_type += 1 152 if key_type != 0 and key_type == i:
|
| /netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/pb_ds/ |
| H A D | trie_policy.hpp | 78 typedef String key_type; typedef 79 typedef typename detail::rebind_traits<_Alloc, key_type>::const_reference 161 typedef typename base_type::key_type key_type; typedef in __gnu_pbds::trie_prefix_search_node_update 263 typedef typename base_type::key_type key_type; typedef in __gnu_pbds::trie_order_statistics_node_update
|
| /netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/ |
| H A D | trie_policy.hpp | 78 typedef String key_type; typedef 79 typedef typename detail::rebind_traits<_Alloc, key_type>::const_reference 161 typedef typename base_type::key_type key_type; typedef in __gnu_pbds::trie_prefix_search_node_update 263 typedef typename base_type::key_type key_type; typedef in __gnu_pbds::trie_order_statistics_node_update
|
| /netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/profile/ |
| H A D | map.h | 52 typedef _Key key_type; in _GLIBCXX_VISIBILITY() typedef 228 operator[](const key_type& __k) in _GLIBCXX_VISIBILITY() 236 operator[](key_type&& __k) in _GLIBCXX_VISIBILITY() 244 at(const key_type& __k) in _GLIBCXX_VISIBILITY() 251 at(const key_type& __k) const in _GLIBCXX_VISIBILITY() 376 erase(const key_type& __x) in _GLIBCXX_VISIBILITY() 424 find(const key_type& __x) in _GLIBCXX_VISIBILITY() 443 find(const key_type& __x) const in _GLIBCXX_VISIBILITY() 462 count(const key_type& __x) const in _GLIBCXX_VISIBILITY() 481 lower_bound(const key_type& __x) in _GLIBCXX_VISIBILITY() [all …]
|