Searched refs:refCount (Results 1 – 10 of 10) sorted by relevance
/freebsd/contrib/ncurses/form/ |
H A D | fty_regex.c | 84 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 D | llib-lformtw | 851 unsigned long *refCount;
|
H A D | llib-lformt | 838 unsigned long *refCount;
|
H A D | llib-lformw | 851 unsigned long *refCount;
|
H A D | llib-lform | 838 unsigned long *refCount;
|
/freebsd/contrib/bmake/ |
H A D | dir.c | 218 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 D | suff.c | 180 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 D | ProgramState.cpp | 31 ++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 D | ImmutableSet.h | 222 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 D | ProgramState.h | 125 unsigned refCount; variable
|