HomeSort by relevance Sort by last modified time
    Searched defs:use_count_ (Results 1 - 12 of 12) 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_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_;
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_ );
  /external/chromium/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
  /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
  /external/chromium_org/gpu/command_buffer/service/
shader_manager.h 86 DCHECK_GE(use_count_, 0);
87 return use_count_ != 0;
126 int use_count_; member in class:gpu::gles2::Shader
program_manager.h 171 DCHECK_GE(use_count_, 0);
172 return use_count_ != 0;
209 ++use_count_;
213 --use_count_;
214 DCHECK_GE(use_count_, 0);
266 int use_count_; member in class:gpu::gles2::Program
  /external/chromium_org/gpu/command_buffer/tests/
gl_manager.cc 29 int GLManager::use_count_; member in class:gpu::GLManager
51 --use_count_;
52 if (!use_count_) {
214 if (use_count_) {
228 ++use_count_;
gl_manager.h 111 static int use_count_; member in class:gpu::GLManager
  /external/v8/src/
api.h 349 StringTracker() : use_count_(0), last_top_(NULL), isolate_(NULL) { }
357 return use_count_ < kUseLimit;
362 use_count_ = 0;
365 ++use_count_;
369 int use_count_; member in class:v8::internal::StringTracker
  /external/chromium_org/v8/src/
api.h 438 StringTracker() : use_count_(0), last_top_(NULL), isolate_(NULL) { }
446 return use_count_ < kUseLimit;
451 use_count_ = 0;
454 ++use_count_;
458 int use_count_; member in class:v8::internal::StringTracker
  /external/chromium_org/gpu/command_buffer/client/
gles2_implementation.h 639 int use_count_; member in class:gpu::gles2::GLES2Implementation

Completed in 138 milliseconds