Searched refs:refcount (Results 1 - 25 of 286) sorted by relevance

1234567891011>>

/macosx-10.10/libauto-186/
H A DBlockRef.cpp32 usword_t SubzoneBlockRef::refcount() const { function in class:Auto::SubzoneBlockRef
33 int refcount = 0; local
42 refcount = retain_iter->second;
44 refcount = 1;
47 return refcount;
51 int refcount; local
60 refcount = ++retain_iter->second;
63 refcount = (retains[block] = 2);
70 refcount = 1;
72 return refcount;
113 usword_t refcount = _large->refcount() + 1; local
[all...]
H A DBlockRef.h69 usword_t refcount() const;
85 inline bool has_refcount() const { return refcount() != 0; }
108 inline usword_t refcount() const { return _large->refcount(); } function in class:Auto::LargeBlockRef
224 _refcount = ref.refcount();
244 inline usword_t refcount() const { if (!(requested_info & AUTO_BLOCK_INFO_REFCOUNT)) __builtin_trap(); return _refcount; } function in class:Auto::auto_block_info_sieve
257 usword_t refcount; member in class:Auto::auto_refcount_sieve
259 inline auto_refcount_sieve(Zone *z, const void *ptr) __attribute__((always_inline)) : zone(z), refcount(0) {
265 refcount = zone->block_increment_refcount(ref);
267 refcount
[all...]
H A DZoneDump.cpp49 void (^node_dump)(const void *address, unsigned long size, unsigned int layout, unsigned long refcount); member in struct:Auto::dump_all_blocks_visitor
59 node_dump(block, subzone->size(q), subzone->layout(q), ref.refcount());
67 node_dump(large->address(), large->size(), large->layout(), large->refcount());
85 // We don't take, for example, the refcounts lock, and are willing to provide an inexact refcount.
151 _visitor->visit_node(block, subzone->size(q), subzone->layout(q), ref.refcount(), subzone->is_thread_local(q));
159 _visitor->visit_node(large->address(), large->size(), large->layout(), large->refcount(), false);
/macosx-10.10/apr-32/apr-util/apr-util/buckets/
H A Dapr_buckets_refcount.c28 r->refcount++;
39 r->refcount++;
47 r->refcount--;
48 return (r->refcount == 0);
61 r->refcount = 1;
/macosx-10.10/Libinfo-459/lookup.subproj/
H A Dsi_data.h33 int32_t refcount; member in struct:__anon2866
40 int32_t refcount; member in struct:__anon2867
H A Dsi_data.c41 l->refcount = 1;
78 l->refcount = 1;
132 rc = OSAtomicIncrement32Barrier(&list->refcount);
145 rc = OSAtomicDecrement32Barrier(&list->refcount);
167 rc = OSAtomicIncrement32Barrier(&item->refcount);
180 rc = OSAtomicDecrement32Barrier(&item->refcount);
/macosx-10.10/Security-57031.1.35/Security/libsecurity_apple_cspdl/lib/
H A DCSPDLDatabase.h28 #include <security_utilities/refcount.h>
/macosx-10.10/Security-57031.1.35/Security/libsecurity_sd_cspdl/lib/
H A DSDCSPDLDatabase.h34 #include <security_utilities/refcount.h>
/macosx-10.10/bind9-45.101/bind9/lib/isc/
H A Drefcount.c17 /* $Id: refcount.c,v 1.5 2007/06/19 23:47:17 tbox Exp $ */
24 #include <isc/refcount.h>
/macosx-10.10/ntp-92/lib/isc/
H A Drefcount.c17 /* $Id: refcount.c,v 1.5 2007/06/19 23:47:17 tbox Exp $ */
24 #include <isc/refcount.h>
/macosx-10.10/postfix-255/postfix/src/global/
H A Dmypwd.h18 int refcount; member in struct:mypasswd
H A Dmypwd.c141 mypwd->refcount = 0;
192 mypwd->refcount++;
223 mypwd->refcount += 2;
256 mypwd->refcount++;
286 mypwd->refcount += 2;
294 if (mypwd->refcount < 1)
295 msg_panic("mypwfree: refcount %d", mypwd->refcount);
300 if (--mypwd->refcount == 0) {
347 msg_info("lookup %s %s/%d refcount
[all...]
/macosx-10.10/bind9-45.101/bind9/bin/named/
H A Dlistenlist.c66 list->refcount = 1;
87 INSIST(source->refcount > 0);
88 source->refcount++;
95 INSIST(list->refcount > 0);
96 list->refcount--;
97 if (list->refcount == 0)
/macosx-10.10/tcl-105/tk/tk/win/
H A DtkWinSendCom.h35 long refcount; member in struct:__anon13652
/macosx-10.10/cxxfilt-11/cxxfilt/bfd/
H A Delf-strtab.c35 unsigned int refcount; member in struct:elf_strtab_hash_entry
83 ret->refcount = 0;
157 entry->refcount++;
185 ++tab->array[idx]->refcount;
195 BFD_ASSERT (tab->array[idx]->refcount > 0);
196 --tab->array[idx]->refcount;
205 tab->array[idx]->refcount = 0;
224 BFD_ASSERT (entry->refcount > 0);
225 entry->refcount--;
242 BFD_ASSERT (tab->array[i]->refcount
[all...]
/macosx-10.10/bash-94.1.2/bash-3.2/
H A Dpcomplib.c54 ret->refcount = 0;
74 cs->refcount--;
75 if (cs->refcount == 0)
97 new->refcount = cs->refcount;
184 cs->refcount++;
/macosx-10.10/bind9-45.101/bind9/lib/dns/
H A Diptable.c40 isc_refcount_init(&tab->refcount, 1);
78 isc_refcount_destroy(&pfx.refcount);
108 isc_refcount_destroy(&pfx.refcount);
160 isc_refcount_increment(&source->refcount, NULL);
169 isc_refcount_decrement(&tab->refcount, &refs);
185 isc_refcount_destroy(&dtab->refcount);
/macosx-10.10/postfix-255/postfix/src/qmgr/
H A Dqmgr_peer.c87 peer->refcount = 0;
103 if (peer->refcount != 0)
104 msg_panic("%s: refcount: %d", myname, peer->refcount);
/macosx-10.10/Security-57031.1.35/Security/include/security_cdsa_client/
H A DDLDBList.h31 #include <security_utilities/refcount.h>
/macosx-10.10/Security-57031.1.35/Security/include/securityd_client/
H A Deventlistener.h29 #include <security_utilities/refcount.h>
/macosx-10.10/Security-57031.1.35/Security/libsecurity_cdsa_client/lib/
H A DDLDBList.h31 #include <security_utilities/refcount.h>
/macosx-10.10/Security-57031.1.35/Security/libsecurityd/lib/
H A Deventlistener.h29 #include <security_utilities/refcount.h>
/macosx-10.10/iodbc-42.5/iodbc/iodbc/
H A Ddlproc.c150 pDrv->refcount++;
167 pDrv->refcount = 1;
214 pDrv->refcount--;
223 if (pDrv->refcount == 0 && pDrv->safe_unload)
/macosx-10.10/BerkeleyDB-21/db/mod_db4/
H A Dutils.c284 int refcount = 0; local
289 refcount = (int) mm_hash_find(ref_counts, path, pathlen);
290 refcount++;
291 mm_hash_update(ref_counts, path, pathlen, (void *)refcount);
293 return refcount;
298 int refcount = 0; local
303 refcount = (int) mm_hash_find(ref_counts, path, pathlen);
304 if(refcount > 0) refcount--;
305 mm_hash_update(ref_counts, path, pathlen, (void *)refcount);
312 int refcount = 0; local
[all...]
/macosx-10.10/libclosure-65/tests/
H A Dobjc.m21 int refcount;
37 ++refcount;
42 return refcount + 1;
46 if (refcount == 0) [self dealloc];
47 else --refcount;

Completed in 203 milliseconds

1234567891011>>