Home
last modified time | relevance | path

Searched refs:to_insert (Results 1 – 10 of 10) sorted by relevance

/third_party/boost/boost/intrusive/
Dtreap.hpp435 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 …]
Dsgtree.hpp449 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 …]
Dbstree.hpp1064 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 …]
Dlist.hpp270 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()
Dslist.hpp434 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/
Dgsth264picture.c708 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 …]
Dgsth264picture.h307 GstH264Picture * to_insert,
/third_party/python/Lib/tkinter/test/test_ttk/
Dtest_widgets.py367 def validate(to_insert): argument
368 if not 'a' <= to_insert.lower() <= 'z':
/third_party/boost/libs/intrusive/doc/
Dintrusive.qbk2584 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/
DChangeLog5359 codecs: h264: Add protection to to_insert picture in bump check.