| /src/external/bsd/elftosb/dist/common/ |
| AESKey.h | 39 * The underlying key type can be accessed like this: AESKey<128>::key_t 55 typedef uint8_t key_t[S/8]; typedef in class:AESKey 67 AESKey(const key_t & key) 73 AESKey(const key_t * key) 119 inline const key_t & getKey() const { return m_key; } 120 inline void getKey(key_t * key) const { memcpy(key, m_key, sizeof(m_key)); } 122 inline void setKey(const key_t & key) { memcpy(m_key, &key, sizeof(m_key)); } 123 inline void setKey(const key_t * key) { memcpy(m_key, key, sizeof(m_key)); } 130 const AESKey<S> & operator = (const key_t & key) { setKey(key); return *this; } 131 const AESKey<S> & operator = (const key_t * key) { setKey(key); return *this; [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/analyzer/ |
| analyzer.h | 349 /* A map from T::key_t to T* for use in consolidating instances of T. 351 T::key_t should have operator== and be hashable. */ 357 typedef typename T::key_t key_t; typedef in class:consolidation_map 359 typedef hash_map<key_t, instance_t *> inner_map_t; 373 T *get (const key_t &k) const 382 void put (const key_t &k, T *instance)
|
| constraint-manager.h | 117 typedef bounded_ranges key_t; typedef in struct:ana::bounded_ranges 153 template <> struct default_hash_traits<bounded_ranges::key_t> 154 : public member_function_hash_traits<bounded_ranges::key_t>
|
| store.h | 345 typedef concrete_binding key_t; typedef in class:ana::concrete_binding 415 typedef symbolic_binding key_t; typedef in class:ana::symbolic_binding
|
| exploded-graph.h | 739 class key_t class in class:ana::worklist 742 key_t (const worklist &w, exploded_node *enode) function in class:ana::worklist::key_t 746 bool operator< (const key_t &other) const 751 bool operator== (const key_t &other) const 756 bool operator> (const key_t &other) const 762 static int cmp (const key_t &ka, const key_t &kb); 783 typedef fibonacci_heap<key_t, exploded_node> queue_t;
|
| region.h | 262 struct key_t struct in class:ana::frame_region 264 key_t (const frame_region *calling_frame, function *fun) function in struct:ana::frame_region::key_t 279 bool operator== (const key_t &other) const 352 template <> struct default_hash_traits<frame_region::key_t> 353 : public member_function_hash_traits<frame_region::key_t> 569 struct key_t struct in class:ana::symbolic_region 571 key_t (const region *parent, const svalue *sval_ptr) function in struct:ana::symbolic_region::key_t 585 bool operator== (const key_t &other) const 627 template <> struct default_hash_traits<symbolic_region::key_t> 628 : public member_function_hash_traits<symbolic_region::key_t> 694 struct key_t struct in class:ana::field_region 696 key_t (const region *parent, tree field) function in struct:ana::field_region::key_t 767 struct key_t struct in class:ana::element_region 769 key_t (const region *parent, tree element_type, const svalue *index) function in struct:ana::element_region::key_t 852 struct key_t struct in class:ana::offset_region 854 key_t (const region *parent, tree element_type, const svalue *byte_offset) function in struct:ana::offset_region::key_t 936 struct key_t struct in class:ana::sized_region 938 key_t (const region *parent, tree element_type, function in struct:ana::sized_region::key_t 1028 struct key_t struct in class:ana::cast_region 1030 key_t (const region *original_region, tree type) function in struct:ana::cast_region::key_t 1166 struct key_t struct in class:ana::bit_range_region 1168 key_t (const region *parent, tree type, const bit_range &bits) function in struct:ana::bit_range_region::key_t [all...] |
| svalue.h | 197 struct key_t struct in class:ana::region_svalue 199 key_t (tree type, const region *reg) function in struct:ana::region_svalue::key_t 211 bool operator== (const key_t &other) const 261 template <> struct default_hash_traits<region_svalue::key_t> 262 : public member_function_hash_traits<region_svalue::key_t> 367 struct key_t struct in class:ana::poisoned_svalue 369 key_t (enum poison_kind kind, tree type) function in struct:ana::poisoned_svalue::key_t 381 bool operator== (const key_t &other) const 429 template <> struct default_hash_traits<poisoned_svalue::key_t> 430 : public member_function_hash_traits<poisoned_svalue::key_t> 474 struct key_t struct in class:ana::setjmp_svalue 476 key_t (const setjmp_record &record, tree type) function in struct:ana::setjmp_svalue::key_t 593 struct key_t struct in class:ana::unaryop_svalue 595 key_t (tree type, enum tree_code op, const svalue *arg) function in struct:ana::unaryop_svalue::key_t 678 struct key_t struct in class:ana::binop_svalue 680 key_t (tree type, enum tree_code op, function in struct:ana::binop_svalue::key_t 772 struct key_t struct in class:ana::sub_svalue 774 key_t (tree type, const svalue *parent_svalue, const region *subregion) function in struct:ana::sub_svalue::key_t 851 struct key_t struct in class:ana::repeated_svalue 853 key_t (tree type, function in struct:ana::repeated_svalue::key_t 939 struct key_t struct in class:ana::bits_within_svalue 941 key_t (tree type, function in struct:ana::bits_within_svalue::key_t 1114 struct key_t struct in class:ana::widening_svalue 1116 key_t (tree type, const program_point &point, function in struct:ana::widening_svalue::key_t 1232 struct key_t struct in class:ana::compound_svalue 1234 key_t (tree type, const binding_map *map_ptr) function in struct:ana::compound_svalue::key_t 1353 struct key_t struct in class:ana::conjured_svalue 1355 key_t (tree type, const gimple *stmt, const region *id_reg) function in struct:ana::conjured_svalue::key_t 1447 struct key_t struct in class:ana::asm_output_svalue 1449 key_t (tree type, function in struct:ana::asm_output_svalue::key_t 1584 struct key_t struct in class:ana::const_fn_result_svalue 1586 key_t (tree type, function in struct:ana::const_fn_result_svalue::key_t [all...] |
| diagnostic-manager.cc | 223 : m_queue (key_t (*this, NULL)), 232 m_queue.insert (key_t (*this, fnode), fnode); 236 struct key_t struct in class:ana::feasible_worklist 238 key_t (const feasible_worklist &w, feasible_node *fnode) function in struct:ana::feasible_worklist::key_t 242 bool operator< (const key_t &other) const 247 bool operator== (const key_t &other) const 252 bool operator> (const key_t &other) const 258 static int cmp (const key_t &ka, const key_t &kb) 294 typedef fibonacci_heap<key_t, feasible_node> queue_t [all...] |
| sm-malloc.cc | 237 typedef const auto_vec <const deallocator *> *key_t; typedef in struct:ana::__anon15216::custom_deallocator_set 274 typedef custom_deallocator_set::key_t key_type; 461 typedef hash_map<custom_deallocator_set::key_t,
|
| /src/external/gpl3/gcc/dist/gcc/analyzer/ |
| analyzer.h | 523 /* A map from T::key_t to T* for use in consolidating instances of T. 525 T::key_t should have operator== and be hashable. */ 531 typedef typename T::key_t key_t; typedef in class:consolidation_map 533 typedef hash_map<key_t, instance_t *> inner_map_t; 547 T *get (const key_t &k) const 556 void put (const key_t &k, T *instance)
|
| constraint-manager.h | 122 typedef bounded_ranges key_t; typedef in struct:ana::bounded_ranges 161 template <> struct default_hash_traits<bounded_ranges::key_t> 162 : public member_function_hash_traits<bounded_ranges::key_t>
|
| store.h | 378 typedef concrete_binding key_t; typedef in class:ana::concrete_binding 459 typedef symbolic_binding key_t; typedef in class:ana::symbolic_binding
|
| exploded-graph.h | 738 class key_t class in class:ana::worklist 741 key_t (const worklist &w, exploded_node *enode) function in class:ana::worklist::key_t 745 bool operator< (const key_t &other) const 750 bool operator== (const key_t &other) const 755 bool operator> (const key_t &other) const 761 static int cmp (const key_t &ka, const key_t &kb); 782 typedef fibonacci_heap<key_t, exploded_node> queue_t;
|
| region.h | 309 struct key_t struct in class:ana::frame_region 311 key_t (const frame_region *calling_frame, const function &fun) function in struct:ana::frame_region::key_t 325 bool operator== (const key_t &other) const 399 template <> struct default_hash_traits<frame_region::key_t> 400 : public member_function_hash_traits<frame_region::key_t> 642 struct key_t struct in class:ana::symbolic_region 644 key_t (const region *parent, const svalue *sval_ptr) function in struct:ana::symbolic_region::key_t 658 bool operator== (const key_t &other) const 700 template <> struct default_hash_traits<symbolic_region::key_t> 701 : public member_function_hash_traits<symbolic_region::key_t> 773 struct key_t struct in class:ana::field_region 775 key_t (const region *parent, tree field) function in struct:ana::field_region::key_t 848 struct key_t struct in class:ana::element_region 850 key_t (const region *parent, tree element_type, const svalue *index) function in struct:ana::element_region::key_t 935 struct key_t struct in class:ana::offset_region 937 key_t (const region *parent, tree element_type, const svalue *byte_offset) function in struct:ana::offset_region::key_t 1022 struct key_t struct in class:ana::sized_region 1024 key_t (const region *parent, tree element_type, function in struct:ana::sized_region::key_t 1117 struct key_t struct in class:ana::cast_region 1119 key_t (const region *original_region, tree type) function in struct:ana::cast_region::key_t 1267 struct key_t struct in class:ana::bit_range_region 1269 key_t (const region *parent, tree type, const bit_range &bits) function in struct:ana::bit_range_region::key_t 1356 struct key_t struct in class:ana::var_arg_region 1358 key_t (const frame_region *parent, unsigned idx) function in struct:ana::var_arg_region::key_t [all...] |
| svalue.h | 200 struct key_t struct in class:ana::region_svalue 202 key_t (tree type, const region *reg) function in struct:ana::region_svalue::key_t 214 bool operator== (const key_t &other) const 264 template <> struct default_hash_traits<region_svalue::key_t> 265 : public member_function_hash_traits<region_svalue::key_t> 280 struct key_t struct in class:ana::constant_svalue 282 key_t (tree type, tree cst) function in struct:ana::constant_svalue::key_t 294 bool operator== (const key_t &other) const 352 template <> struct default_hash_traits<constant_svalue::key_t> 353 : public member_function_hash_traits<constant_svalue::key_t> 412 struct key_t struct in class:ana::poisoned_svalue 414 key_t (enum poison_kind kind, tree type) function in struct:ana::poisoned_svalue::key_t 519 struct key_t struct in class:ana::setjmp_svalue 521 key_t (const setjmp_record &record, tree type) function in struct:ana::setjmp_svalue::key_t 639 struct key_t struct in class:ana::unaryop_svalue 641 key_t (tree type, enum tree_code op, const svalue *arg) function in struct:ana::unaryop_svalue::key_t 725 struct key_t struct in class:ana::binop_svalue 727 key_t (tree type, enum tree_code op, function in struct:ana::binop_svalue::key_t 820 struct key_t struct in class:ana::sub_svalue 822 key_t (tree type, const svalue *parent_svalue, const region *subregion) function in struct:ana::sub_svalue::key_t 899 struct key_t struct in class:ana::repeated_svalue 901 key_t (tree type, function in struct:ana::repeated_svalue::key_t 988 struct key_t struct in class:ana::bits_within_svalue 990 key_t (tree type, function in struct:ana::bits_within_svalue::key_t 1164 struct key_t struct in class:ana::widening_svalue 1166 key_t (tree type, const function_point &point, function in struct:ana::widening_svalue::key_t 1283 struct key_t struct in class:ana::compound_svalue 1285 key_t (tree type, const binding_map *map_ptr) function in struct:ana::compound_svalue::key_t 1404 struct key_t struct in class:ana::conjured_svalue 1406 key_t (tree type, const gimple *stmt, const region *id_reg, unsigned idx) function in struct:ana::conjured_svalue::key_t 1503 struct key_t struct in class:ana::asm_output_svalue 1505 key_t (tree type, function in struct:ana::asm_output_svalue::key_t 1642 struct key_t struct in class:ana::const_fn_result_svalue 1644 key_t (tree type, function in struct:ana::const_fn_result_svalue::key_t [all...] |
| diagnostic-manager.cc | 236 : m_queue (key_t (*this, NULL)), 245 m_queue.insert (key_t (*this, fnode), fnode); 249 struct key_t struct in class:ana::feasible_worklist 251 key_t (const feasible_worklist &w, feasible_node *fnode) function in struct:ana::feasible_worklist::key_t 255 bool operator< (const key_t &other) const 260 bool operator== (const key_t &other) const 265 bool operator> (const key_t &other) const 271 static int cmp (const key_t &ka, const key_t &kb) 307 typedef fibonacci_heap<key_t, feasible_node> queue_t [all...] |
| sm-malloc.cc | 261 typedef const auto_vec <const deallocator *> *key_t; typedef in struct:ana::__anon12594::custom_deallocator_set 298 typedef custom_deallocator_set::key_t key_type; 515 typedef hash_map<custom_deallocator_set::key_t,
|
| /src/sys/sys/ |
| types.h | 177 typedef long key_t; /* IPC key (for Sys V IPC) */ typedef
|
| /src/external/gpl3/gcc/dist/gcc/cp/ |
| module.cc | 2548 typedef traits::compare_type key_t; typedef in class:elf::hash
|
| /src/external/gpl3/gcc.old/dist/gcc/cp/ |
| module.cc | 2515 typedef traits::compare_type key_t; typedef in class:elf::hash
|