HomeSort by relevance Sort by last modified time
    Searched refs:use_count_ (Results 1 - 14 of 14) 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/chromium_org/chrome/browser/net/
referrer.h 104 void IncrementUseCount() { ++use_count_; }
105 int64 use_count() const { return use_count_; }
132 int64 use_count_; member in class:chrome_browser_net::Referrer
referrer.cc 53 Referrer::Referrer() : use_count_(1) {}
  /external/chromium_org/gpu/command_buffer/service/
shader_manager.h 86 DCHECK_GE(use_count_, 0);
87 return use_count_ != 0;
137 int use_count_; member in class:gpu::gles2::Shader
program_manager.h 190 DCHECK_GE(use_count_, 0);
191 return use_count_ != 0;
245 ++use_count_;
249 --use_count_;
250 DCHECK_GE(use_count_, 0);
302 int use_count_; member in class:gpu::gles2::Program
shader_manager.cc 16 : use_count_(0),
26 ++use_count_;
30 --use_count_;
31 DCHECK_GE(use_count_, 0);
program_manager.cc 212 use_count_(0),
    [all...]
  /external/chromium_org/gpu/command_buffer/tests/
gl_manager.cc 32 int GLManager::use_count_; member in class:gpu::GLManager
53 --use_count_;
54 if (!use_count_) {
212 if (use_count_) {
226 ++use_count_;
gl_manager.h 139 static int use_count_; member in class:gpu::GLManager
  /external/chromium_org/v8/src/
api.h 415 StringTracker() : use_count_(0), last_top_(NULL), isolate_(NULL) { }
423 return use_count_ < kUseLimit;
428 use_count_ = 0;
431 ++use_count_;
435 int use_count_; member in class:v8::internal::StringTracker
  /external/chromium_org/gpu/command_buffer/client/
gles2_implementation.h 742 int use_count_; member in class:gpu::gles2::GLES2Implementation
gles2_implementation.cc 76 CHECK_EQ(0, gles2_implementation_->use_count_);
77 ++gles2_implementation_->use_count_;
81 --gles2_implementation_->use_count_;
82 CHECK_EQ(0, gles2_implementation_->use_count_);
118 use_count_(0),
    [all...]

Completed in 348 milliseconds