Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/ncurses/form/
H A Dfty_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()
H A Dllib-lformw851 unsigned long *refCount;
H A Dllib-lform838 unsigned long *refCount;
H A Dllib-lformtw851 unsigned long *refCount;
H A Dllib-lformt838 unsigned long *refCount;
/freebsd-13.1/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()
1711 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-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DProgramState.cpp30 ++const_cast<ProgramState*>(state)->refCount; in ProgramStateRetain()
35 assert(state->refCount > 0); in ProgramStateRelease()
37 if (--s->refCount == 0) { in ProgramStateRelease()
52 refCount(0) { in ProgramState()
62 refCount(0) { in ProgramState()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ADT/
H A DImmutableSet.h235 uint32_t refCount = 0; variable
331 void retain() { ++refCount; } in retain()
334 assert(refCount > 0); in release()
335 if (--refCount == 0) in release()
491 if (N->isMutable() && N->refCount == 0)
635 if (TNew->refCount == 0)
/freebsd-13.1/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DProgramState.h88 unsigned refCount; variable