Searched refs:ref_count_ (Results 26 - 50 of 60) sorted by relevance

123

/external/sfntly/cpp/src/sfntly/port/
H A Drefcount.h89 typeid(this).name(), object_counter_, object_id_, ref_count_)
125 RefCounted() : ref_count_(0) {
132 RefCounted(const RefCounted<TDerived>&) : ref_count_(0) {}
146 size_t new_count = AtomicIncrement(&ref_count_);
152 size_t new_ref_count = AtomicDecrement(&ref_count_);
162 mutable size_t ref_count_; // reference count of current object member in class:sfntly::RefCounted
/external/chromium_org/content/child/
H A Dchild_process.cc38 : ref_count_(0),
86 ref_count_++;
92 DCHECK(ref_count_);
93 if (--ref_count_)
H A Dchild_process.h73 int ref_count_; member in class:content::ChildProcess
/external/chromium_org/mojo/services/test_service/
H A Dtest_service_application.h42 int ref_count_; member in class:mojo::test::TestServiceApplication
/external/chromium_org/ui/base/dragdrop/
H A Ddrop_target_win.cc17 ref_count_(0) {
112 return ++ref_count_;
116 if (--ref_count_ == 0) {
120 return ref_count_;
H A Ddrop_target_win.h107 LONG ref_count_; member in class:ui::DropTargetWin
H A Dos_exchange_data_provider_win.cc87 FormatEtcEnumerator() : cursor_(0), ref_count_(0) {
103 LONG ref_count_; member in class:ui::FINAL
121 : ref_count_(0), cursor_(0) {
188 return InterlockedIncrement(&ref_count_);
192 if (InterlockedDecrement(&ref_count_) == 0) {
193 ULONG copied_refcnt = ref_count_;
197 return ref_count_;
/external/chromium_org/content/browser/service_worker/
H A Dservice_worker_registration_handle.h40 bool HasNoRefCount() const { return ref_count_ <= 0; }
74 int ref_count_; // Created with 1. member in class:content::ServiceWorkerRegistrationHandle
H A Dservice_worker_handle.h78 bool HasNoRefCount() const { return ref_count_ <= 0; }
88 int ref_count_; // Created with 1. member in class:content::ServiceWorkerHandle
/external/chromium_org/third_party/webrtc/video_engine/
H A Dvie_manager_base.h64 int ref_count_; member in class:webrtc::ViEManagerScopedBase
/external/chromium_org/ui/base/ime/win/
H A Dtsf_input_scope.cc36 ref_count_(0) {}
40 return InterlockedIncrement(&ref_count_);
44 const LONG count = InterlockedDecrement(&ref_count_);
102 volatile LONG ref_count_; member in class:ui::tsf_inputscope::__anon16650::FINAL
/external/openfst/src/include/fst/
H A Dadd-on.h53 int RefCount() const { return ref_count_.count(); }
54 int IncrRefCount() { return ref_count_.Incr(); }
55 int DecrRefCount() { return ref_count_.Decr(); }
58 RefCounter ref_count_; member in class:fst::NullAddOn
120 int RefCount() const { return ref_count_.count(); }
123 return ref_count_.Incr();
127 return ref_count_.Decr();
133 RefCounter ref_count_; member in class:fst::AddOnPair
H A Daccumulator.h138 int RefCount() const { return ref_count_.count(); }
139 int IncrRefCount() { return ref_count_.Incr(); }
140 int DecrRefCount() { return ref_count_.Decr(); }
151 RefCounter ref_count_; // Reference count. member in class:fst::FastLogAccumulatorData
379 int RefCount() const { return ref_count_.count(); }
380 int IncrRefCount() { return ref_count_.Incr(); }
381 int DecrRefCount() { return ref_count_.Decr(); }
418 RefCounter ref_count_; member in class:fst::CacheLogAccumulatorData
637 int RefCount() const { return ref_count_.count(); }
638 int IncrRefCount() { return ref_count_
645 RefCounter ref_count_; member in class:fst::ReplaceAccumulatorData
[all...]
H A Dsymbol-table.h150 return ref_count_.Incr();
153 return ref_count_.Decr();
156 return ref_count_.count();
197 mutable RefCounter ref_count_; member in class:fst::SymbolTableImpl
/external/chromium_org/base/memory/
H A Dref_counted.h30 bool HasOneRef() const { return ref_count_ == 1; }
34 : ref_count_(0)
56 ++ref_count_;
68 if (--ref_count_ == 0) {
78 mutable int ref_count_; member in class:base::subtle::RefCountedBase
102 mutable AtomicRefCount ref_count_; member in class:base::subtle::RefCountedThreadSafeBase
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
H A Dforward_error_correction.h42 Packet() : length(0), data(), ref_count_(0) {}
56 int32_t ref_count_; // Counts the number of references to a packet. member in class:webrtc::ForwardErrorCorrection::Packet
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dencode.h211 : ref_count_(1), flags_(flags), type_(type),
215 : ref_count_(mapper.ref_count_ + 1),
222 : ref_count_(mapper.ref_count_ + 1),
228 if (--ref_count_ == 0) delete table_;
308 uint32 ref_count_; member in class:fst::EncodeMapper
314 : ref_count_(1), flags_(flags), type_(type), table_(table) {}
H A Dsymbol-table.h40 : name_(name), available_key_(0), ref_count_(1),
102 return ++ref_count_;
105 return --ref_count_;
131 mutable int ref_count_; member in class:fst::SymbolTableImpl
H A Dfst.h403 ref_count_(1) {}
409 ref_count_(1) {}
449 int RefCount() const { return ref_count_; }
451 int IncrRefCount() { return ++ref_count_; }
453 int DecrRefCount() { return --ref_count_; }
526 int ref_count_; // Reference count member in class:fst::FstImpl
/external/chromium_org/third_party/webrtc/modules/desktop_capture/mac/
H A Ddesktop_configuration_monitor.cc23 : ref_count_(0),
/external/chromium_org/net/disk_cache/memory/
H A Dmem_entry_impl.cc65 ref_count_ = 0;
98 if (!ref_count_) {
126 ref_count_++;
127 DCHECK_GE(ref_count_, 0);
133 return ref_count_ > 0;
160 ref_count_--;
161 DCHECK_GE(ref_count_, 0);
162 if (!ref_count_ && doomed_)
H A Dmem_entry_impl.h163 int ref_count_; member in class:disk_cache::MemEntryImpl
/external/chromium_org/remoting/host/
H A Ddesktop_session_win.cc157 ULONG ref_count_; member in class:remoting::__anon10410::RdpSession::EventHandler
302 : ref_count_(0),
316 return ++ref_count_;
322 if (--ref_count_ == 0) {
327 return ref_count_;
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/
H A Dfake_resource_manager.cc124 ref_count_(0) {}
/external/chromium_org/content/renderer/media/
H A Dwebrtc_audio_device_impl.cc24 : ref_count_(0),
45 return base::subtle::Barrier_AtomicIncrement(&ref_count_, 1);
50 int ret = base::subtle::Barrier_AtomicIncrement(&ref_count_, -1);

Completed in 471 milliseconds

123