Searched defs:ref_count (Results 1 - 25 of 33) sorted by relevance

12

/external/webrtc/webrtc/system_wrappers/include/
H A Dref_count.h69 int32_t ref_count; variable
70 ref_count = --ref_count_;
71 if (ref_count == 0)
73 return ref_count;
/external/libexif/libexif/
H A Dexif-mem.c6 unsigned int ref_count; member in struct:_ExifMem
44 mem->ref_count = 1;
57 mem->ref_count++;
64 if (!--mem->ref_count)
H A Dexif-log.c30 unsigned int ref_count; member in struct:_ExifLog
77 log->ref_count = 1;
100 log->ref_count++;
107 if (log->ref_count > 0) log->ref_count--;
108 if (!log->ref_count) exif_log_free (log);
H A Dexif-mnote-data.c31 unsigned int ref_count; member in struct:_ExifMnoteDataPriv
42 d->priv->ref_count = 1;
51 if (d && d->priv) d->priv->ref_count++;
74 if (d->priv->ref_count > 0) d->priv->ref_count--;
75 if (!d->priv->ref_count)
H A Dexif-content.c36 unsigned int ref_count; member in struct:_ExifContentPrivate
70 content->priv->ref_count = 1;
81 content->priv->ref_count++;
87 content->priv->ref_count--;
88 if (!content->priv->ref_count)
H A Dexif-loader.c81 unsigned int ref_count; member in struct:_ExifLoader
338 loader->ref_count = 1;
350 loader->ref_count++;
373 if (!--loader->ref_count)
H A Dexif-entry.c41 unsigned int ref_count; member in struct:_ExifEntryPrivate
128 e->priv->ref_count = 1;
141 e->priv->ref_count++;
149 e->priv->ref_count--;
150 if (!e->priv->ref_count)
H A Dexif-data.c60 unsigned int ref_count; member in struct:_ExifDataPrivate
119 data->priv->ref_count = 1;
1010 data->priv->ref_count++;
1019 data->priv->ref_count--;
1020 if (!data->priv->ref_count)
/external/webrtc/webrtc/voice_engine/
H A Dchannel_manager.h58 int use_count() const { return channel_ref_->ref_count.Value(); }
66 Atomic32 ref_count; member in struct:webrtc::voe::ChannelOwner::ChannelRef
/external/kernel-headers/original/uapi/linux/
H A Datm_zatm.h26 int ref_count; /* free buffer pool usage counters */ member in struct:zatm_pool_info
/external/webrtc/webrtc/modules/desktop_capture/
H A Dshared_desktop_frame.cc31 int32_t ref_count; local
32 ref_count = --ref_count_;
33 if (ref_count == 0)
35 return ref_count;
/external/harfbuzz_ng/src/
H A Dhb-object-private.hh56 hb_atomic_int_t ref_count; member in struct:hb_reference_count_t
58 inline void init (int v) { ref_count.set_unsafe (v); }
59 inline int get_unsafe (void) const { return ref_count.get_unsafe (); }
60 inline int inc (void) { return ref_count.inc (); }
61 inline int dec (void) { return ref_count.dec (); }
62 inline void finish (void) { ref_count.set_unsafe (HB_REFERENCE_COUNT_POISON_VALUE); }
64 inline bool is_inert (void) const { return ref_count.get_unsafe () == HB_REFERENCE_COUNT_INERT_VALUE; }
65 inline bool is_valid (void) const { return ref_count.get_unsafe () > 0; }
105 hb_reference_count_t ref_count; member in struct:hb_object_header_t
123 obj ? obj->header.ref_count
[all...]
H A Dhb-font.cc1551 unsigned int ref_count; member in struct:hb_trampoline_closure_t
1576 trampoline->closure.ref_count = 1;
1585 closure->ref_count++;
1593 if (--closure->ref_count)
/external/sfntly/cpp/src/sfntly/port/
H A Drefcount.h245 size_t ref_count = 0; local
249 ref_count = p->Release();
253 return ref_count;
/external/srtp/crypto/include/
H A Dauth.h129 int ref_count; member in struct:auth_type_t
H A Dcipher.h147 int ref_count; member in struct:cipher_type_t
/external/clang/test/SemaCXX/
H A Dflexible-array-test.cpp72 long ref_count; member in struct:rdar9065507::StorageBase
/external/freetype/src/cache/
H A Dftccache.h64 FT_Short ref_count; /* reference count for this node */ member in struct:FTC_NodeRec_
195 * the face_id but is locked (i.e., has `ref_count > 0'), the node
/external/mesa3d/src/gallium/state_trackers/clover/core/
H A Dbase.hpp64 unsigned ref_count() { function in class:clover::ref_counter
/external/webrtc/talk/media/base/
H A Dcapturemanager.cc194 const int ref_count = capture_state->IncCaptureStartRef(); local
195 if (ref_count < 1) {
/external/webrtc/webrtc/base/
H A Dstream.h659 int ref_count; local
662 ref_count = --ref_count_;
664 if (ref_count == 0) {
/external/elfutils/libelf/
H A DlibelfP.h308 int ref_count; member in struct:Elf
/external/libpcap/
H A Dpcap-dos.c89 static int ref_count = 0; variable
192 pcap->fd = ++ref_count;
455 if (ref_count > 0)
456 ref_count--;
457 if (ref_count > 0)
/external/openfst/src/include/fst/
H A Dcache.h420 data->ref_count = &(state->ref_count);
421 ++(*data->ref_count);
512 cache_first_state_->ref_count == 0 &&
574 if (cache_size_ > cache_target && state->ref_count == 0 &&
616 CacheState() : final(Weight::Zero()), flags(0), ref_count(0) {}
620 ref_count = 0;
629 mutable int ref_count; member in struct:fst::CacheState
722 ++state_->ref_count;
725 ~CacheArcIterator() { --state_->ref_count; }
[all...]
/external/webrtc/webrtc/modules/rtp_rtcp/source/
H A Dforward_error_correction.cc46 int32_t ref_count; local
47 ref_count = --ref_count_;
48 if (ref_count == 0)
50 return ref_count;

Completed in 319 milliseconds

12