Searched refs:ref_count (Results 1 - 25 of 69) sorted by relevance

123

/external/pcre/dist/
H A Dpcre_refcount.c86 re->ref_count = (-adjust > re->ref_count)? 0 :
87 (adjust + re->ref_count > 65535)? 65535 :
88 re->ref_count + adjust;
89 return re->ref_count;
/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/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-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-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-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)
/external/freetype/src/raster/
H A Drastpic.h36 int ref_count;
H A Drastpic.c45 if ( --container->ref_count )
66 ((RasterPIC*)pic_container->raster)->ref_count++;
76 container->ref_count = 1;
/external/pdfium/third_party/freetype/src/raster/
H A Drastpic.h36 int ref_count;
H A Drastpic.c45 if ( --container->ref_count )
66 ((RasterPIC*)pic_container->raster)->ref_count++;
76 container->ref_count = 1;
/external/freetype/src/smooth/
H A Dftspic.c45 if ( --container->ref_count )
67 ((SmoothPIC*)pic_container->smooth)->ref_count++;
77 container->ref_count = 1;
H A Dftspic.h35 int ref_count;
/external/pdfium/third_party/freetype/src/smooth/
H A Dftspic.c45 if ( --container->ref_count )
67 ((SmoothPIC*)pic_container->smooth)->ref_count++;
77 container->ref_count = 1;
H A Dftspic.h35 int 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/srtp/crypto/cipher/
H A Dnull_cipher.c76 /* increment ref_count */
77 null_cipher.ref_count++;
95 null_cipher.ref_count--;
/external/srtp/crypto/hash/
H A Dnull_auth.c77 null_auth.ref_count++;
94 null_auth.ref_count--;
/external/elfutils/src/libelf/
H A Dcommon.h80 result->ref_count = 1;
108 if (child->ref_count != 0)
126 if (child->ref_count != 0)
H A Delf_end.c55 if (elf->ref_count != 0 && --elf->ref_count != 0)
58 int result = elf->ref_count;
229 return (parent != NULL && parent->ref_count == 0
/external/libvpx/libvpx/vp9/decoder/
H A Dvp9_decoder.h125 --frame_bufs[idx].ref_count;
130 if (frame_bufs[idx].ref_count == 0 &&
/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/libvpx/libvpx/vp9/common/
H A Dvp9_onyxc_int.h72 int ref_count; member in struct:__anon9542
310 if (frame_bufs[i].ref_count == 0)
314 frame_bufs[i].ref_count = 1;
327 if (ref_index >= 0 && bufs[ref_index].ref_count > 0)
328 bufs[ref_index].ref_count--;
332 bufs[new_idx].ref_count++;
/external/clang/test/SemaCXX/
H A Dflexible-array-test.cpp72 long ref_count; member in struct:rdar9065507::StorageBase
/external/mesa3d/src/gallium/state_trackers/clover/api/
H A Dqueue.cpp84 return scalar_property<cl_uint>(buf, size, size_ret, q->ref_count());

Completed in 6185 milliseconds

123