Home
last modified time | relevance | path

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

/freebsd/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-lformtw851 unsigned long *refCount;
H A Dllib-lformt838 unsigned long *refCount;
H A Dllib-lformw851 unsigned long *refCount;
H A Dllib-lform838 unsigned long *refCount;
/freebsd/contrib/bmake/
H A Ddir.c218 int refCount; member
279 dir->refCount = 0; in CachedDir_New()
293 dir->refCount++; in CachedDir_Ref()
297 dir, dir->refCount, dir->name); in CachedDir_Ref()
306 dir->refCount--; in CachedDir_Unref()
310 dir, dir->refCount, dir->name); in CachedDir_Unref()
313 if (dir->refCount > 0) in CachedDir_Unref()
359 dir->refCount, dir->name); in OpenDirs_Done()
1642 dir->refCount, dir->hits, dir->name); in Dir_PrintDirectories()
H A Dsuff.c180 int refCount; member
248 suff->refCount++; in Suffix_Ref()
257 (*var)->refCount--; in Suffix_Reassign()
259 suff->refCount++; in Suffix_Reassign()
267 (*var)->refCount--; in Suffix_Unassign()
363 suff->refCount--; in SuffixList_Unref()
379 if (suff->refCount != 0) in Suffix_Free()
381 suff->name, suff->refCount); in Suffix_Free()
397 if (suff->refCount == 0) { in SuffixList_Remove()
456 suff->refCount = 1; /* XXX: why 1? It's not assigned anywhere yet. */ in Suffix_New()
[all …]
/freebsd/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/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/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DProgramState.h125 unsigned refCount; variable