HomeSort by relevance Sort by last modified time
    Searched refs:use_count_ (Results 1 - 6 of 6) sorted by null

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/smart_ptr/detail/
sp_counted_base_gcc_mips.hpp 112 int use_count_; // #shared member in class:boost::detail::sp_counted_base
117 sp_counted_base(): use_count_( 1 ), weak_count_( 1 )
125 // dispose() is called when use_count_ drops to zero, to release
141 atomic_increment( &use_count_ );
146 return atomic_conditional_increment( &use_count_ ) != 0;
151 if( atomic_decrement( &use_count_ ) == 0 )
173 return static_cast<int const volatile &>( use_count_ );
sp_counted_base_gcc_x86.hpp 104 int use_count_; // #shared member in class:boost::detail::sp_counted_base
109 sp_counted_base(): use_count_( 1 ), weak_count_( 1 )
117 // dispose() is called when use_count_ drops to zero, to release
133 atomic_increment( &use_count_ );
138 return atomic_conditional_increment( &use_count_ ) != 0;
143 if( atomic_exchange_and_add( &use_count_, -1 ) == 1 )
165 return static_cast<int const volatile &>( use_count_ );
sp_counted_base_spin.hpp 61 int use_count_; // #shared member in class:boost::detail::sp_counted_base
66 sp_counted_base(): use_count_( 1 ), weak_count_( 1 )
74 // dispose() is called when use_count_ drops to zero, to release
90 atomic_increment( &use_count_ );
95 return atomic_conditional_increment( &use_count_ ) != 0;
100 if( atomic_exchange_and_add( &use_count_, -1 ) == 1 )
122 spinlock_pool<1>::scoped_lock lock( &use_count_ );
123 return use_count_;
  /external/v8/src/compiler/
generic-node-inl.h 23 use_count_(0),
74 replace_to->use_count_ += use_count_;
75 use_count_ = 0;
200 ++use_count_;
216 --use_count_;
generic-node.h 46 int UseCount() { return use_count_; }
48 DCHECK(index < use_count_);
149 int use_count_;
  /external/v8/src/
api.h 418 StringTracker() : use_count_(0), last_top_(NULL), isolate_(NULL) { }
426 return use_count_ < kUseLimit;
431 use_count_ = 0;
434 ++use_count_;
438 int use_count_; member in class:v8::internal::StringTracker

Completed in 290 milliseconds