Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/ncurses/form/
H A Dfty_regex.c45 unsigned long *refCount; member
83 unsigned long *refCount;
126 if ((preg->refCount = typeMalloc(unsigned long, 1)) != 0) in Generic_RegularExpression_Type()
127 *(preg->refCount) = 1; in Generic_RegularExpression_Type()
153 if ((pArg->refCount = typeMalloc(unsigned long, 1)) != 0) in Generic_RegularExpression_Type()
154 *(pArg->refCount) = 1; in Generic_RegularExpression_Type()
235 *(ap->refCount) += 1; in Copy_RegularExpression_Type()
260 if (--(*(ap->refCount)) == 0) in Free_RegularExpression_Type()
265 free(ap->refCount); in Free_RegularExpression_Type()
271 free(ap->refCount); in Free_RegularExpression_Type()
H A Dllib-lform772 unsigned long *refCount;
H A Dllib-lformt772 unsigned long *refCount;
H A Dllib-lformtw785 unsigned long *refCount;
H A Dllib-lformw785 unsigned long *refCount;
/freebsd-12.1/contrib/bmake/
H A Dsuff.c410 ((Suff *)sp)->refCount--; in SuffUnRef()
439 if (s->refCount) in SuffFree()
441 s->refCount); in SuffFree()
518 s->refCount++; in SuffInsert()
525 s->refCount++; in SuffInsert()
993 s->refCount = 1; in Suff_AddSuffix()
1212 s->refCount++; in SuffAddSrc()
1230 s->refCount++; in SuffAddSrc()
1494 suff->refCount++; in SuffFindCmds()
2116 targ->suff->refCount++; in SuffFindNormalDeps()
[all …]
H A Ddir.c359 dotLast->refCount = 1; in Dir_Init()
379 p->refCount += 1; in Dir_InitCur()
384 cur->refCount -= 1; in Dir_InitCur()
426 dot->refCount += 1; in Dir_InitDot()
447 cur->refCount -= 1; in Dir_End()
450 dot->refCount -= 1; in Dir_End()
451 dotLast->refCount -= 1; in Dir_End()
1643 p->refCount += 1; in Dir_AddDir()
1655 p->refCount = 1; in Dir_AddDir()
1772 p->refCount -= 1; in Dir_Destroy()
[all …]
H A Ddir.h83 int refCount; /* Number of paths with this directory */ member
/freebsd-12.1/contrib/llvm/tools/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()
63 refCount(0) { in ProgramState()
/freebsd-12.1/contrib/llvm/include/llvm/ADT/
H A DImmutableSet.h236 uint32_t refCount = 0; variable
332 void retain() { ++refCount; } in retain()
335 assert(refCount > 0); in release()
336 if (--refCount == 0) in release()
486 if (N->isMutable() && N->refCount == 0) in recoverNodes()
630 if (TNew->refCount == 0) in getCanonicalTree()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DProgramState.h91 unsigned refCount; variable