/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/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/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 | 175 DCHECK_GE(use_count_, 0); 176 return use_count_ != 0; 229 ++use_count_; 233 --use_count_; 234 DCHECK_GE(use_count_, 0); 286 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 | 151 use_count_(0), [all...] |
/external/chromium_org/gpu/command_buffer/tests/ |
gl_manager.cc | 31 int GLManager::use_count_; member in class:gpu::GLManager 52 --use_count_; 53 if (!use_count_) { 214 if (use_count_) { 228 ++use_count_;
|
gl_manager.h | 114 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 | 679 int use_count_; member in class:gpu::gles2::GLES2Implementation
|
gles2_implementation.cc | 75 CHECK_EQ(0, gles2_implementation_->use_count_); 76 ++gles2_implementation_->use_count_; 80 --gles2_implementation_->use_count_; 81 CHECK_EQ(0, gles2_implementation_->use_count_); 112 use_count_(0), [all...] |