Home
last modified time | relevance | path

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

/freebsd-13-stable/contrib/ncurses/form/
HDfty_regex.c53 unsigned long *refCount; member
91 unsigned long *refCount;
134 if ((preg->refCount = typeMalloc(unsigned long, 1)) != 0) in Generic_RegularExpression_Type()
135 *(preg->refCount) = 1; in Generic_RegularExpression_Type()
161 if ((pArg->refCount = typeMalloc(unsigned long, 1)) != 0) in Generic_RegularExpression_Type()
162 *(pArg->refCount) = 1; in Generic_RegularExpression_Type()
243 *(ap->refCount) += 1; in Copy_RegularExpression_Type()
268 if (--(*(ap->refCount)) == 0) in Free_RegularExpression_Type()
273 free(ap->refCount); in Free_RegularExpression_Type()
280 free(ap->refCount); in Free_RegularExpression_Type()
HDllib-lformw851 unsigned long *refCount;
HDllib-lformt838 unsigned long *refCount;
HDllib-lform838 unsigned long *refCount;
HDllib-lformtw851 unsigned long *refCount;
/freebsd-13-stable/contrib/bmake/
HDdir.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()
1711 dir->refCount, dir->hits, dir->name); in Dir_PrintDirectories()
HDsuff.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-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
HDProgramState.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-13-stable/contrib/llvm-project/llvm/include/llvm/ADT/
HDImmutableSet.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-13-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
HDProgramState.h125 unsigned refCount; variable