Home
last modified time | relevance | path

Searched refs:weak_count_ (Results 1 – 18 of 18) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/smart_ptr/detail/
H A Dsp_counted_base_nt.hpp37 long weak_count_; // #weak + (#shared != 0) member in boost::detail::sp_counted_base
41 sp_counted_base(): use_count_( 1 ), weak_count_( 1 ) in sp_counted_base()
88 ++weak_count_; in weak_add_ref()
93 if( --weak_count_ == 0 ) in weak_release()
H A Dsp_counted_base_w32.hpp45 long weak_count_; // #weak + (#shared != 0) member in boost::detail::sp_counted_base
49 sp_counted_base(): use_count_( 1 ), weak_count_( 1 ) in sp_counted_base()
111 BOOST_SP_INTERLOCKED_INCREMENT( &weak_count_ ); in weak_add_ref()
116 if( BOOST_SP_INTERLOCKED_DECREMENT( &weak_count_ ) == 0 ) in weak_release()
H A Dsp_counted_base_gcc_ia64.hpp89 int weak_count_; // #weak + (#shared != 0) member in boost::detail::sp_counted_base
93 sp_counted_base(): use_count_( 1 ), weak_count_( 1 ) in sp_counted_base()
138 atomic_increment( &weak_count_ ); in weak_add_ref()
143 if( atomic_decrement( &weak_count_ ) == 0 ) in weak_release()
H A Dsp_counted_base_gcc_ppc.hpp113 int weak_count_; // #weak + (#shared != 0) member in boost::detail::sp_counted_base
117 sp_counted_base(): use_count_( 1 ), weak_count_( 1 ) in sp_counted_base()
162 atomic_increment( &weak_count_ ); in weak_add_ref()
167 if( atomic_decrement( &weak_count_ ) == 0 ) in weak_release()
H A Dsp_counted_base_gcc_x86.hpp105 int weak_count_; // #weak + (#shared != 0) member in boost::detail::sp_counted_base
109 sp_counted_base(): use_count_( 1 ), weak_count_( 1 ) in sp_counted_base()
154 atomic_increment( &weak_count_ ); in weak_add_ref()
159 if( atomic_exchange_and_add( &weak_count_, -1 ) == 1 ) in weak_release()
H A Dsp_counted_base_vacpp_ppc.hpp81 int weak_count_; // #weak + (#shared != 0) member in boost::detail::sp_counted_base
86 sp_counted_base(): use_count_( 1 ), weak_count_( 1 ) in sp_counted_base()
131 atomic_increment( &weak_count_ ); in weak_add_ref()
136 if( atomic_decrement( &weak_count_ ) == 0 ) in weak_release()
H A Dsp_counted_base_aix.hpp74 int32_t weak_count_; // #weak + (#shared != 0) member in boost::detail::sp_counted_base
78 sp_counted_base(): use_count_( 1 ), weak_count_( 1 ) in sp_counted_base()
123 atomic_increment( &weak_count_ ); in weak_add_ref()
128 if( atomic_decrement( &weak_count_ ) == 0 ) in weak_release()
H A Dsp_counted_base_gcc_mips.hpp113 int weak_count_; // #weak + (#shared != 0) member in boost::detail::sp_counted_base
117 sp_counted_base(): use_count_( 1 ), weak_count_( 1 ) in sp_counted_base()
162 atomic_increment( &weak_count_ ); in weak_add_ref()
167 if( atomic_decrement( &weak_count_ ) == 0 ) in weak_release()
H A Dsp_counted_base_spin.hpp62 int weak_count_; // #weak + (#shared != 0) member in boost::detail::sp_counted_base
66 sp_counted_base(): use_count_( 1 ), weak_count_( 1 ) in sp_counted_base()
111 atomic_increment( &weak_count_ ); in weak_add_ref()
116 if( atomic_exchange_and_add( &weak_count_, -1 ) == 1 ) in weak_release()
H A Dsp_counted_base_acc_ia64.hpp82 int weak_count_; // #weak + (#shared != 0) member in boost::detail::sp_counted_base
86 sp_counted_base(): use_count_( 1 ), weak_count_( 1 ) in sp_counted_base()
131 atomic_increment( &weak_count_ ); in weak_add_ref()
136 if( atomic_decrement( &weak_count_ ) == 0 ) in weak_release()
H A Dsp_counted_base_sync.hpp87 sp_int32_t weak_count_; // #weak + (#shared != 0) member in boost::detail::sp_counted_base
91 sp_counted_base(): use_count_( 1 ), weak_count_( 1 ) in sp_counted_base()
136 atomic_increment( &weak_count_ ); in weak_add_ref()
141 if( atomic_decrement( &weak_count_ ) == 1 ) in weak_release()
H A Dsp_counted_base_std_atomic.hpp68 std::atomic_int_least32_t weak_count_; // #weak + (#shared != 0) member in boost::detail::sp_counted_base
72 sp_counted_base(): use_count_( 1 ), weak_count_( 1 ) in sp_counted_base()
117 atomic_increment( &weak_count_ ); in weak_add_ref()
122 if( atomic_decrement( &weak_count_ ) == 1 ) in weak_release()
H A Dsp_counted_base_cw_ppc.hpp102 long weak_count_; // #weak + (#shared != 0) member in boost::detail::sp_counted_base
106 sp_counted_base(): use_count_( 1 ), weak_count_( 1 ) in sp_counted_base()
151 atomic_increment( &weak_count_ ); in weak_add_ref()
156 if( atomic_decrement( &weak_count_ ) == 0 ) in weak_release()
H A Dsp_counted_base_pt.hpp39 long weak_count_; // #weak + (#shared != 0) member in boost::detail::sp_counted_base
45 sp_counted_base(): use_count_( 1 ), weak_count_( 1 ) in sp_counted_base()
108 ++weak_count_; in weak_add_ref()
115 long new_weak_count = --weak_count_; in weak_release()
H A Dsp_counted_base_clang.hpp74 atomic_int_least32_t weak_count_; // #weak + (#shared != 0) member in boost::detail::sp_counted_base
81 __c11_atomic_init( &weak_count_, 1 ); in sp_counted_base()
125 atomic_increment( &weak_count_ ); in weak_add_ref()
130 if( atomic_decrement( &weak_count_ ) == 1 ) in weak_release()
H A Dsp_counted_base_gcc_sparc.hpp98 int32_t weak_count_; // #weak + (#shared != 0) member in boost::detail::sp_counted_base
102 sp_counted_base(): use_count_( 1 ), weak_count_( 1 ) in sp_counted_base()
147 atomic_increment( &weak_count_ ); in weak_add_ref()
152 if( atomic_decrement( &weak_count_ ) == 1 ) in weak_release()
H A Dsp_counted_base_snc_ps3.hpp93 uint32_t weak_count_; // #weak + (#shared != 0) member in boost::detail::sp_counted_base
97 sp_counted_base(): use_count_( 1 ), weak_count_( 1 ) in sp_counted_base()
142 atomic_increment( &weak_count_ ); in weak_add_ref()
147 if( atomic_decrement( &weak_count_ ) == 1 ) in weak_release()
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/ssiapi/ssiapi/
H A D0002-boost-Backport-clang-support.patch994 + atomic_int_least32_t weak_count_; // #weak + (#shared != 0)
1001 + __c11_atomic_init( &weak_count_, 1 );
1013 + // destroy() is called when weak_count_ drops to zero.
1044 + atomic_increment( &weak_count_ );
1049 + if( atomic_decrement( &weak_count_ ) == 1 )
1155 + sp_int32_t weak_count_; // #weak + (#shared != 0)
1159 + sp_counted_base(): use_count_( 1 ), weak_count_( 1 )
1172 + // destroy() is called when weak_count_ drops to zero.
1203 + atomic_increment( &weak_count_ );
1208 + if( atomic_decrement( &weak_count_ ) == 1 )
[all …]