Searched defs:ref_count (Results 26 - 50 of 79) sorted by relevance

1234

/external/chromium_org/third_party/webrtc/video_engine/
H A Dvie_network_impl.cc45 int32_t ref_count = GetCount(); local
46 if (ref_count < 0) {
51 return ref_count;
H A Dvie_render_impl.cc49 int32_t ref_count = GetCount(); local
50 if (ref_count < 0) {
54 return ref_count;
H A Dvie_base_impl.cc50 int32_t ref_count = GetCount(); local
51 if (ref_count < 0) {
55 return ref_count;
H A Dvie_capture_impl.cc49 int32_t ref_count = GetCount(); local
50 if (ref_count < 0) {
55 return ref_count;
H A Dvie_codec_impl.cc108 int32_t ref_count = GetCount(); local
109 if (ref_count < 0) {
114 return ref_count;
H A Dvie_image_process_impl.cc45 int32_t ref_count = GetCount(); local
46 if (ref_count < 0) {
51 return ref_count;
/external/clang/test/SemaCXX/
H A Dflexible-array-test.cpp66 long ref_count; member in struct:rdar9065507::StorageBase
/external/libexif/libexif/
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)
/external/oprofile/libdb/
H A Dodb.h85 int ref_count; /**< reference count */ member in struct:odb_data
/external/qemu/android/
H A Dasync-socket-connector.c65 int ref_count; member in struct:AsyncSocketConnector
312 connector->ref_count = 1;
353 assert(connector->ref_count > 0);
354 connector->ref_count++;
355 return connector->ref_count;
361 assert(connector->ref_count > 0);
362 connector->ref_count--;
363 if (connector->ref_count == 0) {
368 return connector->ref_count;
/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/chromium_org/content/browser/renderer_host/
H A Drender_view_host_impl.h361 int ref_count() { return frames_ref_count_; } function in class:content::RenderViewHostImpl
/external/chromium_org/third_party/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/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dcapturemanager.cc174 const int ref_count = capture_state->IncCaptureStartRef(); local
175 if (ref_count < 1) {
/external/chromium_org/third_party/libsrtp/srtp/crypto/include/
H A Dauth.h131 int ref_count; member in struct:auth_type_t
H A Dcipher.h148 int ref_count; member in struct:cipher_type_t
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
H A Dbase.hpp64 unsigned ref_count() { function in class:clover::ref_counter
/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/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; }
104 hb_reference_count_t ref_count; member in struct:hb_object_header_t
119 ref_count.init (1);
124 return unlikely (ref_count.is_invalid ());
130 ref_count
[all...]
/external/mesa3d/src/gallium/state_trackers/clover/core/
H A Dbase.hpp64 unsigned ref_count() { function in class:clover::ref_counter
/external/chromium_org/content/browser/dom_storage/
H A Dsession_storage_database_unittest.cc260 int64 ref_count; local
261 bool conversion_ok = base::StringToInt64(it->second, &ref_count);
264 ASSERT_GT(ref_count, 0);
267 ASSERT_EQ(expected_map_refcounts[map_id], ref_count);
379 int64 ref_count; local
380 EXPECT_TRUE(db_->GetMapRefCount(map_id, &ref_count));
381 return ref_count;
/external/chromium_org/extensions/renderer/
H A Dmessaging_bindings.cc58 int ref_count; // how many contexts have a handle to this port member in struct:extensions::__anon8276::ExtensionData::PortData
59 PortData() : ref_count(0) {}
163 ++GetPortData(port_id).ref_count;
175 if (HasPortData(port_id) && --GetPortData(port_id).ref_count == 0) {

Completed in 376 milliseconds

1234