Home
last modified time | relevance | path

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

/openbsd-src/lib/libform/
H A Dfty_regex.c85 unsigned long *refCount; member
123 unsigned long *refCount;
166 if ((preg->refCount = typeMalloc(unsigned long, 1)) != 0) in Generic_RegularExpression_Type()
167 *(preg->refCount) = 1; in Generic_RegularExpression_Type()
193 if ((pArg->refCount = typeMalloc(unsigned long, 1)) != 0) in Generic_RegularExpression_Type()
194 *(pArg->refCount) = 1; in Generic_RegularExpression_Type()
275 *(ap->refCount) += 1; in Copy_RegularExpression_Type()
300 if (--(*(ap->refCount)) == 0) in Free_RegularExpression_Type()
305 free(ap->refCount); in Free_RegularExpression_Type()
312 free(ap->refCount); in Free_RegularExpression_Type()
/openbsd-src/usr.bin/make/
H A Ddir.c170 int refCount; /* ref-counted, can participate to member
336 p->refCount = 0; in create_PathEntry()
343 p->refCount++; in create_PathEntry()
635 if (p->refCount == 1) in Dir_AddDiri()
645 q->refCount++; in Dir_CopyDir()
654 if (--p->refCount == 0) { in Dir_Destroy()
681 p->refCount++; in Dir_Concat()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/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)
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.benjamin/
H A Dtem01.C62 ref_counter<N>& refCount() {return ref_count;} in refCount() function
/openbsd-src/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DProgramState.h125 unsigned refCount; variable