Home
last modified time | relevance | path

Searched refs:local_use_count_ (Results 1 – 1 of 1) 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 Dlocal_counted_base.hpp41 count_type local_use_count_; member in boost::detail::local_counted_base
45 BOOST_CONSTEXPR local_counted_base() BOOST_SP_NOEXCEPT: local_use_count_( initial_ ) in local_counted_base()
49 …PR local_counted_base( local_counted_base const & ) BOOST_SP_NOEXCEPT: local_use_count_( initial_ ) in local_counted_base()
67 __builtin_assume( local_use_count_ >= 1 ); in add_ref()
73 local_use_count_ = static_cast<count_type>( local_use_count_ + 1 ); in add_ref()
78 local_use_count_ = static_cast<count_type>( local_use_count_ - 1 ); in release()
80 if( local_use_count_ == 0 ) in release()
88 return local_use_count_; in local_use_count()