Home
last modified time | relevance | path

Searched refs:refCount (Results 1 – 10 of 10) sorted by relevance

/freebsd-14.2/contrib/ncurses/form/
H A Dfty_regex.c84 unsigned long *refCount; member
122 unsigned long *refCount;
165 if ((preg->refCount = typeMalloc(unsigned long, 1)) != 0) in Generic_RegularExpression_Type()
166 *(preg->refCount) = 1; in Generic_RegularExpression_Type()
192 if ((pArg->refCount = typeMalloc(unsigned long, 1)) != 0) in Generic_RegularExpression_Type()
193 *(pArg->refCount) = 1; in Generic_RegularExpression_Type()
274 *(ap->refCount) += 1; in Copy_RegularExpression_Type()
299 if (--(*(ap->refCount)) == 0) in Free_RegularExpression_Type()
304 free(ap->refCount); in Free_RegularExpression_Type()
311 free(ap->refCount); in Free_RegularExpression_Type()
H A Dllib-lform838 unsigned long *refCount;
H A Dllib-lformtw851 unsigned long *refCount;
H A Dllib-lformt838 unsigned long *refCount;
H A Dllib-lformw851 unsigned long *refCount;
/freebsd-14.2/contrib/bmake/
H A Ddir.c229 int refCount; member
293 dir->refCount = 0; in CachedDir_New()
307 dir->refCount++; in CachedDir_Ref()
311 dir, dir->refCount, dir->name); in CachedDir_Ref()
320 dir->refCount--; in CachedDir_Unref()
324 dir, dir->refCount, dir->name); in CachedDir_Unref()
327 if (dir->refCount > 0) in CachedDir_Unref()
373 dir->refCount, dir->name); in OpenDirs_Done()
1728 dir->refCount, dir->hits, dir->name); in Dir_PrintDirectories()
H A Dsuff.c182 int refCount; member
258 suff->refCount++; in Suffix_Ref()
267 (*var)->refCount--; in Suffix_Reassign()
269 suff->refCount++; in Suffix_Reassign()
277 (*var)->refCount--; in Suffix_Unassign()
373 suff->refCount--; in SuffixList_Unref()
390 if (suff->refCount != 0) in Suffix_Free()
392 suff->name, suff->refCount); in Suffix_Free()
415 if (suff->refCount == 0) { in SuffixList_Remove()
477 suff->refCount = 1; /* XXX: why 1? It's not assigned anywhere yet. */ in Suffix_New()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DProgramState.cpp31 ++const_cast<ProgramState*>(state)->refCount; in ProgramStateRetain()
36 assert(state->refCount > 0); in ProgramStateRelease()
38 if (--s->refCount == 0) { in ProgramStateRelease()
53 refCount(0) { in ProgramState()
59 PosteriorlyOverconstrained(RHS.PosteriorlyOverconstrained), refCount(0) { in ProgramState()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/
H A DImmutableSet.h222 uint32_t refCount = 0; variable
318 void retain() { ++refCount; } in retain()
321 assert(refCount > 0); in release()
322 if (--refCount == 0) in release()
478 if (N->isMutable() && N->refCount == 0)
622 if (TNew->refCount == 0)
/freebsd-14.2/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DProgramState.h125 unsigned refCount; variable