/third_party/boost/boost/intrusive/ |
D | treap.hpp | 435 node_ptr to_insert(this->get_value_traits().to_node_ptr(value)); in insert_equal() local 436 …_INTRUSIVE_SAFE_HOOK_DEFAULT_ASSERT(!safemode_or_autounlink || node_algorithms::unique(to_insert)); in insert_equal() 440 , to_insert in insert_equal() 464 node_ptr to_insert(this->get_value_traits().to_node_ptr(value)); in insert_equal() local 465 …_INTRUSIVE_SAFE_HOOK_DEFAULT_ASSERT(!safemode_or_autounlink || node_algorithms::unique(to_insert)); in insert_equal() 470 , to_insert in insert_equal() 760 node_ptr to_insert(this->get_value_traits().to_node_ptr(value)); in insert_unique_commit() local 761 …_INTRUSIVE_SAFE_HOOK_DEFAULT_ASSERT(!safemode_or_autounlink || node_algorithms::unique(to_insert)); in insert_unique_commit() 762 node_algorithms::insert_unique_commit(this->tree_type::header_ptr(), to_insert, commit_data); in insert_unique_commit() 764 return iterator(to_insert, this->priv_value_traits_ptr()); in insert_unique_commit() [all …]
|
D | sgtree.hpp | 449 node_ptr to_insert(this->get_value_traits().to_node_ptr(value)); in insert_equal() local 451 BOOST_INTRUSIVE_SAFE_HOOK_DEFAULT_ASSERT(node_algorithms::unique(to_insert)); in insert_equal() 454 (this->tree_type::header_ptr(), to_insert, this->key_node_comp(this->key_comp()) in insert_equal() 464 node_ptr to_insert(this->get_value_traits().to_node_ptr(value)); in insert_equal() local 466 BOOST_INTRUSIVE_SAFE_HOOK_DEFAULT_ASSERT(node_algorithms::unique(to_insert)); in insert_equal() 469 …( this->tree_type::header_ptr(), hint.pointed_node(), to_insert, this->key_node_comp(this->key_com… in insert_equal() 547 node_ptr to_insert(this->get_value_traits().to_node_ptr(value)); in insert_unique_commit() local 549 BOOST_INTRUSIVE_SAFE_HOOK_DEFAULT_ASSERT(node_algorithms::unique(to_insert)); in insert_unique_commit() 552 ( this->tree_type::header_ptr(), to_insert, commit_data in insert_unique_commit() 556 return iterator(to_insert, this->priv_value_traits_ptr()); in insert_unique_commit() [all …]
|
D | bstree.hpp | 1064 node_ptr to_insert(this->get_value_traits().to_node_ptr(value)); in insert_equal() local 1066 BOOST_INTRUSIVE_SAFE_HOOK_DEFAULT_ASSERT(node_algorithms::unique(to_insert)); in insert_equal() 1068 …(this->header_ptr(), to_insert, this->key_node_comp(this->key_comp())), this->priv_value_traits_pt… in insert_equal() 1089 node_ptr to_insert(this->get_value_traits().to_node_ptr(value)); in insert_equal() local 1091 BOOST_INTRUSIVE_SAFE_HOOK_DEFAULT_ASSERT(node_algorithms::unique(to_insert)); in insert_equal() 1093 …(this->header_ptr(), hint.pointed_node(), to_insert, this->key_node_comp(this->key_comp())), this-… in insert_equal() 1319 node_ptr to_insert(this->get_value_traits().to_node_ptr(value)); in insert_unique_commit() local 1321 BOOST_INTRUSIVE_SAFE_HOOK_DEFAULT_ASSERT(node_algorithms::unique(to_insert)); in insert_unique_commit() 1336 (this->header_ptr(), to_insert, commit_data); in insert_unique_commit() 1338 return iterator(to_insert, this->priv_value_traits_ptr()); in insert_unique_commit() [all …]
|
D | list.hpp | 270 node_ptr to_insert = priv_value_traits().to_node_ptr(value); in push_back() local 271 …_INTRUSIVE_SAFE_HOOK_DEFAULT_ASSERT(!safemode_or_autounlink || node_algorithms::inited(to_insert)); in push_back() 272 node_algorithms::link_before(this->get_root_node(), to_insert); in push_back() 288 node_ptr to_insert = priv_value_traits().to_node_ptr(value); in push_front() local 289 …_INTRUSIVE_SAFE_HOOK_DEFAULT_ASSERT(!safemode_or_autounlink || node_algorithms::inited(to_insert)); in push_front() 290 node_algorithms::link_before(node_traits::get_next(this->get_root_node()), to_insert); in push_front() 827 node_ptr to_insert = this->priv_value_traits().to_node_ptr(value); in insert() local 828 …_INTRUSIVE_SAFE_HOOK_DEFAULT_ASSERT(!safemode_or_autounlink || node_algorithms::inited(to_insert)); in insert() 829 node_algorithms::link_before(p.pointed_node(), to_insert); in insert() 831 return iterator(to_insert, this->priv_value_traits_ptr()); in insert()
|
D | slist.hpp | 434 node_ptr to_insert = priv_value_traits().to_node_ptr(value); in push_front() local 435 …_INTRUSIVE_SAFE_HOOK_DEFAULT_ASSERT(!safemode_or_autounlink || node_algorithms::inited(to_insert)); in push_front() 438 this->set_last_node(to_insert); in push_front() 441 node_algorithms::link_after(this->get_root_node(), to_insert); in push_front()
|
/third_party/gstreamer/gstplugins_bad/gst-libs/gst/codecs/ |
D | gsth264picture.c | 708 gst_h264_dpb_needs_bump (GstH264Dpb * dpb, GstH264Picture * to_insert, in gst_h264_dpb_needs_bump() argument 777 if (to_insert && to_insert->pic_order_cnt > 0 && lowest_poc < 0) { in gst_h264_dpb_needs_bump() 787 if (to_insert && to_insert->pic_order_cnt > lowest_poc) { in gst_h264_dpb_needs_bump() 806 if (to_insert && !to_insert->ref_pic in gst_h264_dpb_needs_bump() 807 && lowest_poc < to_insert->pic_order_cnt) { in gst_h264_dpb_needs_bump() 809 "for low-latency", lowest_poc, to_insert->pic_order_cnt); in gst_h264_dpb_needs_bump() 847 if (to_insert && to_insert->ref_pic) { in gst_h264_dpb_needs_bump() 852 if (to_insert && to_insert->pic_order_cnt > lowest_poc) { in gst_h264_dpb_needs_bump() 854 " need bumping.", lowest_poc, to_insert->pic_order_cnt); in gst_h264_dpb_needs_bump() 858 if (to_insert) { in gst_h264_dpb_needs_bump() [all …]
|
D | gsth264picture.h | 307 GstH264Picture * to_insert,
|
/third_party/python/Lib/tkinter/test/test_ttk/ |
D | test_widgets.py | 367 def validate(to_insert): argument 368 if not 'a' <= to_insert.lower() <= 'z':
|
/third_party/boost/libs/intrusive/doc/ |
D | intrusive.qbk | 2584 node_ptr to_insert(ValueTraits::to_node_ptr(value)); 2585 circular_list_algorithms::link_after(to_insert, get_root_node());
|
/third_party/gstreamer/gstplugins_bad/ |
D | ChangeLog | 5359 codecs: h264: Add protection to to_insert picture in bump check.
|