HomeSort by relevance Sort by last modified time
    Searched full:weak_count_ (Results 1 - 3 of 3) sorted by null

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/smart_ptr/detail/
sp_counted_base_spin.hpp 62 int weak_count_; // #weak + (#shared != 0) member in class:boost::detail::sp_counted_base
66 sp_counted_base(): use_count_( 1 ), weak_count_( 1 )
79 // destroy() is called when weak_count_ drops to zero.
109 atomic_increment( &weak_count_ );
114 if( atomic_exchange_and_add( &weak_count_, -1 ) == 1 )
sp_counted_base_gcc_mips.hpp 113 int weak_count_; // #weak + (#shared != 0) member in class:boost::detail::sp_counted_base
117 sp_counted_base(): use_count_( 1 ), weak_count_( 1 )
130 // destroy() is called when weak_count_ drops to zero.
160 atomic_increment( &weak_count_ );
165 if( atomic_decrement( &weak_count_ ) == 0 )
sp_counted_base_gcc_x86.hpp 105 int weak_count_; // #weak + (#shared != 0) member in class:boost::detail::sp_counted_base
109 sp_counted_base(): use_count_( 1 ), weak_count_( 1 )
122 // destroy() is called when weak_count_ drops to zero.
152 atomic_increment( &weak_count_ );
157 if( atomic_exchange_and_add( &weak_count_, -1 ) == 1 )

Completed in 6264 milliseconds