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

12

/external/webrtc/src/system_wrappers/interface/
H A Dref_count.h69 int32_t ref_count; local
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/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/harfbuzz_ng/src/
H A Dhb-object-private.hh54 hb_atomic_int_t ref_count; member in struct:hb_reference_count_t
56 inline void init (int v) { ref_count = v; }
57 inline int inc (void) { return hb_atomic_int_add (const_cast<hb_atomic_int_t &> (ref_count), 1); }
58 inline int dec (void) { return hb_atomic_int_add (const_cast<hb_atomic_int_t &> (ref_count), -1); }
59 inline void finish (void) { ref_count = HB_REFERENCE_COUNT_INVALID_VALUE; }
61 inline bool is_invalid (void) const { return ref_count == HB_REFERENCE_COUNT_INVALID_VALUE; }
102 hb_reference_count_t ref_count; member in struct:hb_object_header_t
120 obj ? obj->header.ref_count.ref_count : 0);
138 obj->header.ref_count
[all...]
/external/sfntly/cpp/src/sfntly/port/
H A Drefcount.h248 size_t ref_count = 0; local
252 ref_count = p->Release();
256 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/libvpx/libvpx/vp9/common/
H A Dvp9_onyxc_int.h61 int ref_count; member in struct:__anon9533
221 if (cm->frame_bufs[i].ref_count == 0)
225 cm->frame_bufs[i].ref_count = 1;
232 if (ref_index >= 0 && bufs[ref_index].ref_count > 0)
233 bufs[ref_index].ref_count--;
237 bufs[new_idx].ref_count++;
/external/elfutils/src/libelf/
H A DlibelfP.h296 int ref_count; member in struct:Elf
/external/libpcap/
H A Dpcap-dos.c91 static int ref_count = 0; variable
194 pcap->fd = ++ref_count;
457 if (ref_count > 0)
458 ref_count--;
459 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...]
H A Dfst.h437 int *ref_count; // ... and reference count if non-zero member in struct:fst::ArcIteratorData
462 if (data_.ref_count)
463 ++(*data_.ref_count);
469 else if (data_.ref_count)
470 --(*data_.ref_count);
/external/openssh/
H A Dclientloop.c191 int ref_count; member in struct:global_confirm
550 if (--gc->ref_count <= 0) {
858 if (++last_gc->ref_count >= INT_MAX)
859 fatal("%s: last_gc->ref_count = %d",
860 __func__, last_gc->ref_count);
867 gc->ref_count = 1;
/external/linux-tools-perf/src/tools/lib/traceevent/
H A Devent-parse.h49 int ref_count; member in struct:pevent_record
50 int locked; /* Do not free, even if ref_count is zero */
384 int ref_count; member in struct:pevent
/external/lldb/source/Commands/
H A DCommandObjectTarget.cpp3328 size_t ref_count = 0; local
3333 ref_count = module_sp.use_count() - 1;
3336 strm.Printf("{%*zu}", width, ref_count);
3338 strm.Printf("{%zu}", ref_count);
/external/v8/test/cctest/
H A Dtest-heap-profiler.cc154 uint32_t ref_count = static_cast<uint32_t>( local
156 entry->value = reinterpret_cast<void*>(ref_count + 1);

Completed in 5252 milliseconds

12