/third_party/boost/libs/intrusive/example/ |
D | doc_treap_algorithms.cpp | 16 struct my_node struct 18 my_node(int i = 0, unsigned int priority = 0) in my_node() function 21 my_node *parent_, *left_, *right_; argument 30 typedef my_node node; argument 31 typedef my_node * node_ptr; 32 typedef const my_node * const_node_ptr; 43 { bool operator()(const my_node *a, const my_node *b) { return a->int_ < b->int_; } }; in operator ()() 46 { bool operator()(const my_node *a, const my_node *b) { return a->prio_ < b->prio_;} }; in operator ()() 51 my_node header, two(2, 5), three(3, 1); in main() 64 my_node *n = header.left_; in main()
|
D | doc_splay_algorithms.cpp | 16 struct my_node struct 18 my_node(int i = 0) in my_node() function 21 my_node *parent_, *left_, *right_; argument 30 typedef my_node node; argument 31 typedef my_node * node_ptr; 32 typedef const my_node * const_node_ptr; 44 bool operator()(const my_node *a, const my_node *b) in operator ()() 51 my_node header, two(2), three(3); in main() 64 my_node *n = header.left_; in main()
|
D | doc_splaytree_algorithms.cpp | 16 struct my_node struct 18 my_node(int i = 0) in my_node() function 21 my_node *parent_, *left_, *right_; argument 29 typedef my_node node; argument 30 typedef my_node * node_ptr; 31 typedef const my_node * const_node_ptr; 43 bool operator()(const my_node *a, const my_node *b) in operator ()() 50 my_node header, two(2), three(3); in main() 63 my_node *n = header.left_; in main()
|
D | doc_avltree_algorithms.cpp | 16 struct my_node struct 18 my_node(int i = 0) in my_node() function 21 my_node *parent_, *left_, *right_; argument 30 typedef my_node node; argument 31 typedef my_node * node_ptr; 32 typedef const my_node * const_node_ptr; 50 bool operator()(const my_node *a, const my_node *b) in operator ()() 57 my_node header, two(2), three(3); in main() 70 my_node *n = header.left_; in main()
|
D | doc_rbtree_algorithms.cpp | 16 struct my_node struct 18 my_node(int i = 0) in my_node() function 21 my_node *parent_, *left_, *right_; argument 30 typedef my_node node; argument 31 typedef my_node * node_ptr; 32 typedef const my_node * const_node_ptr; 48 bool operator()(const my_node *a, const my_node *b) in operator ()() 55 my_node header, two(2), three(3); in main() 68 my_node *n = header.left_; in main()
|
D | doc_slist_algorithms.cpp | 16 struct my_node struct 18 my_node *next_; argument 25 typedef my_node node; 26 typedef my_node * node_ptr; 27 typedef const my_node * const_node_ptr; 35 my_node one, two, three; in main()
|
D | doc_list_algorithms.cpp | 16 struct my_node struct 18 my_node *next_, *prev_; argument 25 typedef my_node node; 26 typedef my_node * node_ptr; 27 typedef const my_node * const_node_ptr; 37 my_node one, two, three; in main()
|
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/engine/cache/ |
D | cache_server.cc | 53 auto my_node = hw_info_->GetMyNode(); in DoServiceStart() local 54 MS_LOG(DEBUG) << "Cache server is running on numa node " << my_node; in DoServiceStart()
|