Searched defs:ref_count (Results 1 - 25 of 79) sorted by last modified time

1234

/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/valgrind/main/drd/tests/
H A Dtsan_unittest.cpp7244 static int ref_count; member in namespace:test401
7249 ref_count = number_of_threads;
7254 return AtomicIncrement(&ref_count, -1);
7259 ANNOTATE_CONDVAR_SIGNAL(&ref_count);
7260 int res = AtomicIncrement(&ref_count, -1);
7262 ANNOTATE_CONDVAR_WAIT(&ref_count);
7268 CHECK(ref_count > 0);
/external/srec/srec/include/
H A Dpre_desc.h138 int ref_count; /* reference counts */ member in struct:__anon31123
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dcache.h124 cache_first_state_->ref_count == 0) {
254 data->ref_count = &(state->ref_count);
255 ++(*data->ref_count);
286 if (cache_size_ > cache_target && state->ref_count == 0 &&
353 CacheState() : final(Weight::Zero()), flags(0), ref_count(0) {}
357 ref_count = 0;
366 mutable int ref_count; member in struct:fst::CacheState
437 ++state_->ref_count;
440 ~CacheArcIterator() { --state_->ref_count; }
[all...]
H A Dfst.h308 int *ref_count; // ... and reference count if non-zero member in struct:fst::ArcIteratorData
334 else if (data_.ref_count)
335 --(*data_.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/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/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;
H A Dasync-socket.c87 int ref_count; member in struct:AsyncSocketIO
154 asio->ref_count = 1;
204 assert(asio->ref_count > 0);
205 asio->ref_count++;
206 return asio->ref_count;
212 assert(asio->ref_count > 0);
213 asio->ref_count--;
214 if (asio->ref_count == 0) {
220 return asio->ref_count;
384 int ref_count; member in struct:AsyncSocket
[all...]
H A Dsdk-controller-socket.c138 int ref_count; member in struct:SDKCtlPacket
172 int ref_count; member in struct:SDKCtlDirectPacket
233 int ref_count; member in struct:SDKCtlQuery
361 int ref_count; member in struct:SDKCtlSocket
628 packet->ref_count = 1;
661 assert(packet->ref_count > 0);
662 packet->ref_count++;
663 return packet->ref_count;
670 assert(packet->ref_count > 0);
671 packet->ref_count
[all...]
/external/qemu/android/skin/
H A Dimage.c213 int ref_count; member in struct:SkinImage
266 image->ref_count = 1;
435 if (image->ref_count == 0) {
548 node->ref_count += 1;
590 image->ref_count += 1;
602 if (image != _no_image && --image->ref_count == 0) {
/external/qemu/distrib/mini-glib/src/
H A Dglib-mini.c406 int ref_count; member in struct:_GHashTable
432 hash_table->ref_count = 1;
456 g_atomic_int_inc(&hash_table->ref_count);
465 if (!g_atomic_int_dec_and_test(&hash_table->ref_count))
/external/qemu/distrib/sdl-1.2.15/src/joystick/
H A DSDL_sysjoystick.h50 int ref_count; /* Reference count for multiple opens */ member in struct:_SDL_Joystick
/external/pcre/dist/
H A Dpcre_internal.h2332 pcre_uint16 ref_count; /* Reference count */ member in struct:real_pcre8_or_16
2358 pcre_uint16 ref_count; /* Reference count */ member in struct:real_pcre32
/external/pixman/pixman/
H A Dpixman-private.h95 int32_t ref_count; member in struct:image_common
/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/oprofile/daemon/liblegacy/
H A Dopd_image.h31 int ref_count; member in struct:opd_image
/external/oprofile/daemon/
H A Dopd_kernel.c145 char ref_count[32+1]; local
179 module_name, &module_size, ref_count,
/external/oprofile/libdb/
H A Dodb.h85 int ref_count; /**< reference count */ member in struct:odb_data
/external/mesa3d/src/gallium/state_trackers/clover/core/
H A Dbase.hpp64 unsigned ref_count() { function in class:clover::ref_counter
/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/libvpx/libvpx/vp9/common/
H A Dvp9_onyxc_int.h61 int ref_count; member in struct:__anon24922
220 if (cm->frame_bufs[i].ref_count == 0)
224 cm->frame_bufs[i].ref_count = 1;
231 if (ref_index >= 0 && bufs[ref_index].ref_count > 0)
232 bufs[ref_index].ref_count--;
236 bufs[new_idx].ref_count++;
/external/linux-tools-perf/perf-3.12.0/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

Completed in 7604 milliseconds

1234